Skip to main content

TypeAlias.GqlEdge

type GqlEdge<T> = {
cursor: string | null;
node: T | null;
};

Type Parameters

Type Parameter
T extends { id: string; }

Properties

PropertyType
cursorstring | null
nodeT | null