Class PageInfo

Namespace: IndicoV2-CommonModels-Pagination
Assembly: IndicoV2-Abstractions-dll

Represents graphql pagination cursor-

public class PageInfo

Inheritance

object
PageInfo

Inherited Members

object-Equals(object),
object-Equals(object, object),
object-GetHashCode(),
object-GetType(),
object-MemberwiseClone(),
object-ReferenceEquals(object, object),
object-ToString()

Properties

AggregateCount

Total # of results in query-

public int AggregateCount { get; set; }

Property Value

int

EndCursor

Ending number of the page

public int EndCursor { get; set; }

Property Value

int

HasNextPage

If there are additional pages

public bool HasNextPage { get; set; }

Property Value

bool

StartCursor

Starting number of the page

public int StartCursor { get; set; }

Property Value

int