Type alias ListItinerariesQuery
ListItinerariesQuery: {
__typename?: "Query";
itineraries: {
__typename: "ItinerarySearchConnection";
edges: {
__typename?: "ItinerarySearchEdge";
node: {
__typename: "ItinerarySearchNode";
created?: string | null;
id: string;
published?: string | null;
synopsis?: string | null;
tags: string[];
title?: string | null;
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
};
}
Type declaration
-
Optional
__typename?: "Query"
-
itineraries: {
__typename: "ItinerarySearchConnection";
edges: {
__typename?: "ItinerarySearchEdge";
node: {
__typename: "ItinerarySearchNode";
created?: string | null;
id: string;
published?: string | null;
synopsis?: string | null;
tags: string[];
title?: string | null;
};
}[];
pageInfo: {
__typename?: "PageInfo";
endCursor?: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string | null;
};
totalCount: number;
}
-
__typename: "ItinerarySearchConnection"
-
edges: {
__typename?: "ItinerarySearchEdge";
node: {
__typename: "ItinerarySearchNode";
created?: string | null;
id: string;
published?: string | null;
synopsis?: string | null;
tags: string[];
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