FSharp.Data.GraphQL


Connection<'Node>

Namespace: FSharp.Data.GraphQL.Relay

Record representing Relay connection object. Connection describes a set of results (Relay nodes) returned from the server. Instead of statically identifying paged results, relay uses notion of the cursor, which allows to track result set windows, while the result set itself may change over time.

Record Fields

Record FieldDescription
Edges
Signature: seq<Edge<'Node>>

List of edges (Relay nodes with cursors) returned as results.

PageInfo
Signature: PageInfo

Information about current results page.

TotalCount
Signature: int option

Optional value describing total number of results avaiable at the time.

Fork me on GitHub