@zeepkist/graphql
    Preparing search index...

    Interface LevelUsersByRecordManyToManyEdgeGenqlSelection

    A User edge in the connection, with data from Record.

    interface LevelUsersByRecordManyToManyEdgeGenqlSelection {
        cursor?: number | boolean;
        node?: UserGenqlSelection;
        records?: RecordsConnectionGenqlSelection & {
            __args?: {
                first?: null | number;
                last?: null | number;
                offset?: null | number;
                before?: any;
                after?: any;
                orderBy?: null | RecordsOrderBy[];
                condition?: null | RecordCondition;
                filter?: null | RecordFilter;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    cursor?: number | boolean

    A cursor for use in pagination.

    The User at the end of the edge.

    records?: RecordsConnectionGenqlSelection & {
        __args?: {
            first?: null | number;
            last?: null | number;
            offset?: null | number;
            before?: any;
            after?: any;
            orderBy?: null | RecordsOrderBy[];
            condition?: null | RecordCondition;
            filter?: null | RecordFilter;
        };
    }

    Reads and enables pagination through a set of Record.

    __typename?: number | boolean
    __scalar?: number | boolean