fixed list js example

This commit is contained in:
Gani Georgiev 2022-08-09 17:57:32 +03:00
parent a355c8e8a9
commit ac0c23ff64
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@
// fetch a paginated records list // fetch a paginated records list
const resultList = await client.records.getList('${collection?.name}', 1, 50, { 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: // alternatively you can also fetch all records at once via getFullList: