Interface GraphqlConnectionEdge<T>

interface GraphqlConnectionEdge {
    cursor?: string;
    node: T;
}

Type Parameters

  • T

Properties

Properties

cursor?: string
node: T

Generated using TypeDoc