PageInfo
Namespace: Meshmakers.Octo.Communication.Contracts.GraphQL
Represents a page info object.
public class PageInfo
Properties
EndCursor
Returns the end cursor of the previous page or null if there is no previous page.
public string EndCursor { get; set; }
Property Value
HasNextPage
Returns true if there is a next page.
public bool HasNextPage { get; set; }
Property Value
HasPreviousPage
Returns true if there is a previous page.
public bool HasPreviousPage { get; set; }
Property Value
StartCursor
Returns the start cursor of the next page or null if there is no next page.
public string StartCursor { get; set; }
Property Value
Constructors
PageInfo()
public PageInfo()