Update geo GraphQL generated types
All checks were successful
Build Docker Image / build (push) Successful in 4m54s
All checks were successful
Build Docker Image / build (push) Successful in 4m54s
This commit is contained in:
@@ -163,14 +163,12 @@ export type Query = {
|
|||||||
nodes?: Maybe<Array<Maybe<NodeType>>>;
|
nodes?: Maybe<Array<Maybe<NodeType>>>;
|
||||||
/** Get total count of nodes (with optional transport/country/bounds filter) */
|
/** Get total count of nodes (with optional transport/country/bounds filter) */
|
||||||
nodesCount?: Maybe<Scalars['Int']['output']>;
|
nodesCount?: Maybe<Scalars['Int']['output']>;
|
||||||
/** Get route from a specific offer to hub */
|
|
||||||
offerToHub?: Maybe<ProductRouteOptionType>;
|
|
||||||
/** Get offers for a product with routes to hub (auto → rail* → auto) */
|
|
||||||
offersByHub?: Maybe<Array<Maybe<ProductRouteOptionType>>>;
|
|
||||||
/** Get all offers for a product */
|
/** Get all offers for a product */
|
||||||
offersByProduct?: Maybe<Array<Maybe<OfferNodeType>>>;
|
offersByProduct?: Maybe<Array<Maybe<OfferNodeType>>>;
|
||||||
/** Get offers from a supplier for a specific product */
|
/** Get offers from a supplier for a specific product */
|
||||||
offersBySupplierProduct?: Maybe<Array<Maybe<OfferNodeType>>>;
|
offersBySupplierProduct?: Maybe<Array<Maybe<OfferNodeType>>>;
|
||||||
|
/** Get offers for a product with routes to hub (auto → rail* → auto) */
|
||||||
|
offersForHub?: Maybe<Array<Maybe<ProductRouteOptionType>>>;
|
||||||
/** Get unique products from all offers */
|
/** Get unique products from all offers */
|
||||||
products?: Maybe<Array<Maybe<ProductType>>>;
|
products?: Maybe<Array<Maybe<ProductType>>>;
|
||||||
/** Get products offered by a supplier */
|
/** Get products offered by a supplier */
|
||||||
@@ -325,21 +323,6 @@ export type QueryNodesCountArgs = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/** Root query. */
|
|
||||||
export type QueryOfferToHubArgs = {
|
|
||||||
hubUuid: Scalars['String']['input'];
|
|
||||||
offerUuid: Scalars['String']['input'];
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/** Root query. */
|
|
||||||
export type QueryOffersByHubArgs = {
|
|
||||||
hubUuid: Scalars['String']['input'];
|
|
||||||
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
||||||
productUuid: Scalars['String']['input'];
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/** Root query. */
|
/** Root query. */
|
||||||
export type QueryOffersByProductArgs = {
|
export type QueryOffersByProductArgs = {
|
||||||
productUuid: Scalars['String']['input'];
|
productUuid: Scalars['String']['input'];
|
||||||
@@ -353,6 +336,14 @@ export type QueryOffersBySupplierProductArgs = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/** Root query. */
|
||||||
|
export type QueryOffersForHubArgs = {
|
||||||
|
hubUuid: Scalars['String']['input'];
|
||||||
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
||||||
|
productUuid: Scalars['String']['input'];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/** Root query. */
|
/** Root query. */
|
||||||
export type QueryProductsBySupplierArgs = {
|
export type QueryProductsBySupplierArgs = {
|
||||||
supplierUuid: Scalars['String']['input'];
|
supplierUuid: Scalars['String']['input'];
|
||||||
|
|||||||
Reference in New Issue
Block a user