Type Alias RelayPaginationResult<T>

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

Type Parameters

  • T = unknown