GraphQL API

GraphQL API

Latest Poppulo platform GraphQL API

PaginationOptions

Options for pagination

Fields

  • first

    Int
    Optional

    Used for pagination to specify the number of items returned. The `last` & `before` fields MUST be `NULL` when using this field.

  • after

    String
    Optional

    Used for pagination to get the next page of data after the specified cursor. The `last` & `before` fields MUST be `NULL` when using this field.

  • last

    Int
    Optional

    Used for pagination to specify the number of items returned. The `first` & `after` fields MUST be `NULL` when using this field.

  • before

    String
    Optional

    Used for pagination to get the previous page of data before the specified cursor. The `first` & `after` fields MUST be `NULL` when using this field.