View Source Bonfire.API.GraphQL.PageInfo (Bonfire v0.9.10-classic-beta.156)

Information about this page's relation to a larger result set

Summary

Types

@type t() :: %Bonfire.API.GraphQL.PageInfo{
  end_cursor: binary() | nil,
  has_next_page: true | false | nil,
  has_previous_page: true | false | nil,
  start_cursor: binary() | nil
}

Functions

Link to this function

new(start_cursor, end_cursor, has_previous_page, has_next_page)

View Source