PageInfo
public class PageInfo : GraphQLObject
                Page Info
This is the information about the current Page. This Information includes the start and end cursor and whether or not there’s adjacent pages.
- 
                  
                  
Initializer for Page Info
Declaration
Swift
public init(hasNextPage: Bool, hasPreviousPage: Bool, startCursor: String?, endCursor: String?)Parameters
hasNextPageis there a page after this one
hasPreviousPageis there a page before this one
startCursorWhat’s the cursor of the first item. (
nilif empty)endCursorWhat’s the cursor of the last item. (
nilif empty) 
            View on GitHub
          
      PageInfo Class Reference