Interface GraphqlConnection<T>

interface GraphqlConnection {
    edges?: GraphqlConnectionEdge<T>[];
    pageInfo?: PageInfo;
    permissions?: any;
    t?: T;
    totalCount?: number;
}

Type Parameters

  • T

Hierarchy

Properties

pageInfo?: PageInfo
permissions?: any
t?: T
totalCount?: number

Generated using TypeDoc