@zeepkist/graphql
    Preparing search index...

    Interface RecordsConnection

    A connection to a list of Record values.

    interface RecordsConnection {
        nodes: Record[];
        edges: RecordsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "RecordsConnection";
    }
    Index

    Properties

    nodes: Record[]

    A list of Record objects.

    edges: RecordsEdge[]

    A list of edges which contains the Record and cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

    The count of all Record you could get from the connection.

    __typename: "RecordsConnection"