OBJECT

RowConnection

Description

Paginated list of Row objects. Each page of the results includes at most 1000 entries. Query the pageInfo.hasNextPage field to know whether all objects were returned.

link GraphQL Schema definition

  • type RowConnection {
  • columns: [Column!]!
  • # Total number of Row objects matching the request arguments.
  • count: Int!
  • # List of Row objects with additional pagination information. Use `nodes` if
  • # per-object cursors are not needed.
  • edges: [RowEdge!]!
  • # List of Row objects.
  • nodes: [Row!]!
  • # General information about this result page.
  • pageInfo: PageInfo!
  • }

link Require by