@zeepkist/graphql
    Preparing search index...

    Interface RecordMediaConnection

    A connection to a list of RecordMedia values.

    interface RecordMediaConnection {
        nodes: RecordMedia[];
        edges: RecordMediaEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "RecordMediaConnection";
    }
    Index

    Properties

    nodes: RecordMedia[]

    A list of RecordMedia objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "RecordMediaConnection"