Skip to content

@ecp.eth/sdk


@ecp.eth/sdk / indexer / IndexerAPICursorRepliesPaginationSchemaType

Type Alias: IndexerAPICursorRepliesPaginationSchemaType

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

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

Type declaration

count

count: number;

endCursor?

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

hasNext

hasNext: boolean;

hasPrevious

hasPrevious: boolean;

limit

limit: number;

startCursor?

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