graphql-mocks
    Preparing search index...

    Type Alias RelayPaginationResult<T>

    type RelayPaginationResult<T = unknown> = {
        edges: { node: T }[];
        pageInfo: {
            endCursor: string | null;
            hasNextPage: boolean;
            hasPreviousPage: boolean;
            startCursor: string | null;
        };
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    Properties

    edges: { node: T }[]
    pageInfo: {
        endCursor: string | null;
        hasNextPage: boolean;
        hasPreviousPage: boolean;
        startCursor: string | null;
    }