1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-28 18:11:17 +02:00

fixed list js example

This commit is contained in:
Gani Georgiev 2022-08-09 17:57:32 +03:00
parent a355c8e8a9
commit ac0c23ff64

View File

@ -98,7 +98,7 @@
// fetch a paginated records list
const resultList = await client.records.getList('${collection?.name}', 1, 50, {
filter: 'created >= '2022-01-01 00:00:00'',
filter: 'created >= "2022-01-01 00:00:00"',
});
// alternatively you can also fetch all records at once via getFullList: