Type alias FindCollectionLocationIdsByExternalQuery
FindCollectionLocationIdsByExternalQuery: {
__typename?: "Query";
collectionItems: {
__typename: "CollectionItemConnection";
edges: {
__typename?: "CollectionItemEdge";
cursor: string;
node: {
__typename: "CollectionLocation";
id: string;
place: {
__typename: "Place";
id: string;
};
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
};
}
Type declaration
-
Optional
__typename?: "Query"
-
collectionItems: {
__typename: "CollectionItemConnection";
edges: {
__typename?: "CollectionItemEdge";
cursor: string;
node: {
__typename: "CollectionLocation";
id: string;
place: {
__typename: "Place";
id: string;
};
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
}
-
__typename: "CollectionItemConnection"
-
edges: {
__typename?: "CollectionItemEdge";
cursor: string;
node: {
__typename: "CollectionLocation";
id: string;
place: {
__typename: "Place";
id: string;
};
};
}[]
-
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