platform icon indicating copy to clipboard operation
platform copied to clipboard

documents.get ignores `startAt` parameter

Open dashameter opened this issue 2 years ago • 0 comments

on v.22 the query:

platform.documents.get(
    'dpns.domain',
    {
      limit: 5,
      startAt: Buffer.from(Identifier.from($id)),
      where: [
        ['normalizedParentDomainName', '==', 'dash'],
     ],
    },
  );

ignores the startAt parameter and always returns the same 5 initial documents

dashameter avatar Apr 13 '22 19:04 dashameter