Type alias FindItineraryLocationIdsByPlaceIdQuery
FindItineraryLocationIdsByPlaceIdQuery: {
__typename?: "Query";
itinerary?: {
__typename?: "Itinerary";
descendants: {
__typename: "ItineraryItemConnection";
edges: {
__typename?: "ItineraryItemEdge";
node: {
__typename: "ItineraryCollection";
id: string;
} | {
__typename: "ItineraryDirections";
id: string;
} | {
__typename: "ItineraryLocation";
id: string;
place: {
__typename: "Place";
id: string;
};
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
};
} | null;
}
Type declaration
-
Optional
__typename?: "Query"
-
Optional
itinerary?: {
__typename?: "Itinerary";
descendants: {
__typename: "ItineraryItemConnection";
edges: {
__typename?: "ItineraryItemEdge";
node: {
__typename: "ItineraryCollection";
id: string;
} | {
__typename: "ItineraryDirections";
id: string;
} | {
__typename: "ItineraryLocation";
id: string;
place: {
__typename: "Place";
id: string;
};
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
};
} | null