Skip to content

@ecp.eth/sdk


@ecp.eth/sdk / indexer / IndexerAPICursorPaginationSchemaType

Type Alias: IndexerAPICursorPaginationSchemaType

type IndexerAPICursorPaginationSchemaType = {
  endCursor?: `0x${string}`;
  hasNext: boolean;
  hasPrevious: boolean;
  limit: number;
  startCursor?: `0x${string}`;
};

Defined in: packages/sdk/src/indexer/schemas.ts:130

Type declaration

endCursor?

optional endCursor: `0x${string}`;

hasNext

hasNext: boolean;

hasPrevious

hasPrevious: boolean;

limit

limit: number;

startCursor?

optional startCursor: `0x${string}`;