PageInfo
Information to aid in pagination.
Fields
end_cursor
· Cursor
· When paginating forwards, the cursor to continue. start_cursor
· Cursor
· When paginating backwards, the cursor to continue. Used By
Definition
"""Information to aid in pagination."""type PageInfo { """ When paginating forwards, the cursor to continue. """ end_cursor: Cursor
""" When paginating forwards, are there more items? """ has_next_page: Boolean!
""" When paginating backwards, are there more items? """ has_previous_page: Boolean!
""" When paginating backwards, the cursor to continue. """ start_cursor: Cursor}