Type alias ListCollectionsQuery
ListCollectionsQuery: {
__typename?: "Query";
collections: {
__typename: "CollectionConnection";
edges: {
__typename?: "CollectionEdge";
node: {
__typename: "Collection";
id: string;
items: {
__typename?: "CollectionItemConnection";
totalCount: number;
};
readMoreUrl?: string | null;
synopsis?: string | null;
title?: string | null;
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
};
}
Type declaration
-
Optional
__typename?: "Query"
-
collections: {
__typename: "CollectionConnection";
edges: {
__typename?: "CollectionEdge";
node: {
__typename: "Collection";
id: string;
items: {
__typename?: "CollectionItemConnection";
totalCount: number;
};
readMoreUrl?: string | null;
synopsis?: string | null;
title?: string | null;
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
}
-
__typename: "CollectionConnection"
-
edges: {
__typename?: "CollectionEdge";
node: {
__typename: "Collection";
id: string;
items: {
__typename?: "CollectionItemConnection";
totalCount: number;
};
readMoreUrl?: string | null;
synopsis?: string | null;
title?: string | null;
};
}[]
-
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
}
-
Optional
__typename?: "PageInfo"
-
Optional
endCursor?: string | null
-
hasNextPage: boolean
-
hasPreviousPage: boolean
-
Optional
startCursor?: string | null
-
totalCount: number