CursorBasedPagination

public struct CursorBasedPagination : Codable

Allows further retrieval of paginated data. See: https://developers.facebook.com/docs/graph-api/using-graph-api/#paging

  • A pair of Cursors that allow traversal through paginated data.

    See more

    Declaration

    Swift

    public struct Cursors : Codable
  • Cursors that allow traversal through the paginated data.

    Declaration

    Swift

    public let cursors: CursorBasedPagination.Cursors
  • The Graph API endpoint that will return the next page of data. If not set, then the current data represents the last page.

    Declaration

    Swift

    public let next: String?