Skip to main content

PageInfo

Namespace: Meshmakers.Octo.Communication.Contracts.GraphQL

Represents a page info object.

public class PageInfo

Inheritance ObjectPageInfo

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

String

HasNextPage

Returns true if there is a next page.

public bool HasNextPage { get; set; }

Property Value

Boolean

HasPreviousPage

Returns true if there is a previous page.

public bool HasPreviousPage { get; set; }

Property Value

Boolean

StartCursor

Returns the start cursor of the next page or null if there is no next page.

public string StartCursor { get; set; }

Property Value

String

Constructors

PageInfo()

public PageInfo()