|
@@ -2536,16 +2536,22 @@ export type Mutation = {
|
|
|
createZone: Zone;
|
|
createZone: Zone;
|
|
|
/** Delete an Administrator */
|
|
/** Delete an Administrator */
|
|
|
deleteAdministrator: DeletionResponse;
|
|
deleteAdministrator: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple Administrators */
|
|
|
|
|
+ deleteAdministrators: Array<DeletionResponse>;
|
|
|
/** Delete an Asset */
|
|
/** Delete an Asset */
|
|
|
deleteAsset: DeletionResponse;
|
|
deleteAsset: DeletionResponse;
|
|
|
/** Delete multiple Assets */
|
|
/** Delete multiple Assets */
|
|
|
deleteAssets: DeletionResponse;
|
|
deleteAssets: DeletionResponse;
|
|
|
/** Delete a Channel */
|
|
/** Delete a Channel */
|
|
|
deleteChannel: DeletionResponse;
|
|
deleteChannel: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple Channels */
|
|
|
|
|
+ deleteChannels: Array<DeletionResponse>;
|
|
|
/** Delete a Collection and all of its descendants */
|
|
/** Delete a Collection and all of its descendants */
|
|
|
deleteCollection: DeletionResponse;
|
|
deleteCollection: DeletionResponse;
|
|
|
/** Delete multiple Collections and all of their descendants */
|
|
/** Delete multiple Collections and all of their descendants */
|
|
|
deleteCollections: Array<DeletionResponse>;
|
|
deleteCollections: Array<DeletionResponse>;
|
|
|
|
|
+ /** Delete multiple Countries */
|
|
|
|
|
+ deleteCountries: Array<DeletionResponse>;
|
|
|
/** Delete a Country */
|
|
/** Delete a Country */
|
|
|
deleteCountry: DeletionResponse;
|
|
deleteCountry: DeletionResponse;
|
|
|
/** Delete a Customer */
|
|
/** Delete a Customer */
|
|
@@ -2554,7 +2560,11 @@ export type Mutation = {
|
|
|
deleteCustomerAddress: Success;
|
|
deleteCustomerAddress: Success;
|
|
|
/** Delete a CustomerGroup */
|
|
/** Delete a CustomerGroup */
|
|
|
deleteCustomerGroup: DeletionResponse;
|
|
deleteCustomerGroup: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple CustomerGroups */
|
|
|
|
|
+ deleteCustomerGroups: Array<DeletionResponse>;
|
|
|
deleteCustomerNote: DeletionResponse;
|
|
deleteCustomerNote: DeletionResponse;
|
|
|
|
|
+ /** Deletes Customers */
|
|
|
|
|
+ deleteCustomers: Array<DeletionResponse>;
|
|
|
/** Deletes a draft Order */
|
|
/** Deletes a draft Order */
|
|
|
deleteDraftOrder: DeletionResponse;
|
|
deleteDraftOrder: DeletionResponse;
|
|
|
/** Delete an existing Facet */
|
|
/** Delete an existing Facet */
|
|
@@ -2566,6 +2576,8 @@ export type Mutation = {
|
|
|
deleteOrderNote: DeletionResponse;
|
|
deleteOrderNote: DeletionResponse;
|
|
|
/** Delete a PaymentMethod */
|
|
/** Delete a PaymentMethod */
|
|
|
deletePaymentMethod: DeletionResponse;
|
|
deletePaymentMethod: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple PaymentMethods */
|
|
|
|
|
+ deletePaymentMethods: Array<DeletionResponse>;
|
|
|
/** Delete a Product */
|
|
/** Delete a Product */
|
|
|
deleteProduct: DeletionResponse;
|
|
deleteProduct: DeletionResponse;
|
|
|
/** Delete a ProductOption */
|
|
/** Delete a ProductOption */
|
|
@@ -2577,23 +2589,36 @@ export type Mutation = {
|
|
|
/** Delete multiple Products */
|
|
/** Delete multiple Products */
|
|
|
deleteProducts: Array<DeletionResponse>;
|
|
deleteProducts: Array<DeletionResponse>;
|
|
|
deletePromotion: DeletionResponse;
|
|
deletePromotion: DeletionResponse;
|
|
|
|
|
+ deletePromotions: Array<DeletionResponse>;
|
|
|
/** Delete a Province */
|
|
/** Delete a Province */
|
|
|
deleteProvince: DeletionResponse;
|
|
deleteProvince: DeletionResponse;
|
|
|
/** Delete an existing Role */
|
|
/** Delete an existing Role */
|
|
|
deleteRole: DeletionResponse;
|
|
deleteRole: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple Roles */
|
|
|
|
|
+ deleteRoles: Array<DeletionResponse>;
|
|
|
/** Delete a Seller */
|
|
/** Delete a Seller */
|
|
|
deleteSeller: DeletionResponse;
|
|
deleteSeller: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple Sellers */
|
|
|
|
|
+ deleteSellers: Array<DeletionResponse>;
|
|
|
/** Delete a ShippingMethod */
|
|
/** Delete a ShippingMethod */
|
|
|
deleteShippingMethod: DeletionResponse;
|
|
deleteShippingMethod: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple ShippingMethods */
|
|
|
|
|
+ deleteShippingMethods: Array<DeletionResponse>;
|
|
|
deleteStockLocation: DeletionResponse;
|
|
deleteStockLocation: DeletionResponse;
|
|
|
/** Delete an existing Tag */
|
|
/** Delete an existing Tag */
|
|
|
deleteTag: DeletionResponse;
|
|
deleteTag: DeletionResponse;
|
|
|
|
|
+ /** Deletes multiple TaxCategories */
|
|
|
|
|
+ deleteTaxCategories: Array<DeletionResponse>;
|
|
|
/** Deletes a TaxCategory */
|
|
/** Deletes a TaxCategory */
|
|
|
deleteTaxCategory: DeletionResponse;
|
|
deleteTaxCategory: DeletionResponse;
|
|
|
/** Delete a TaxRate */
|
|
/** Delete a TaxRate */
|
|
|
deleteTaxRate: DeletionResponse;
|
|
deleteTaxRate: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple TaxRates */
|
|
|
|
|
+ deleteTaxRates: Array<DeletionResponse>;
|
|
|
/** Delete a Zone */
|
|
/** Delete a Zone */
|
|
|
deleteZone: DeletionResponse;
|
|
deleteZone: DeletionResponse;
|
|
|
|
|
+ /** Delete a Zone */
|
|
|
|
|
+ deleteZones: Array<DeletionResponse>;
|
|
|
flushBufferedJobs: Success;
|
|
flushBufferedJobs: Success;
|
|
|
importProducts?: Maybe<ImportInfo>;
|
|
importProducts?: Maybe<ImportInfo>;
|
|
|
/** Authenticates the user using the native authentication strategy. This mutation is an alias for `authenticate({ native: { ... }})` */
|
|
/** Authenticates the user using the native authentication strategy. This mutation is an alias for `authenticate({ native: { ... }})` */
|
|
@@ -2901,6 +2926,10 @@ export type MutationDeleteAdministratorArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteAdministratorsArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteAssetArgs = {
|
|
export type MutationDeleteAssetArgs = {
|
|
|
input: DeleteAssetInput;
|
|
input: DeleteAssetInput;
|
|
|
};
|
|
};
|
|
@@ -2913,6 +2942,10 @@ export type MutationDeleteChannelArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteChannelsArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteCollectionArgs = {
|
|
export type MutationDeleteCollectionArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -2921,6 +2954,10 @@ export type MutationDeleteCollectionsArgs = {
|
|
|
ids: Array<Scalars['ID']>;
|
|
ids: Array<Scalars['ID']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteCountriesArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteCountryArgs = {
|
|
export type MutationDeleteCountryArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -2937,10 +2974,18 @@ export type MutationDeleteCustomerGroupArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteCustomerGroupsArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteCustomerNoteArgs = {
|
|
export type MutationDeleteCustomerNoteArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteCustomersArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteDraftOrderArgs = {
|
|
export type MutationDeleteDraftOrderArgs = {
|
|
|
orderId: Scalars['ID'];
|
|
orderId: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -2969,6 +3014,11 @@ export type MutationDeletePaymentMethodArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeletePaymentMethodsArgs = {
|
|
|
|
|
+ force?: InputMaybe<Scalars['Boolean']>;
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteProductArgs = {
|
|
export type MutationDeleteProductArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -2993,6 +3043,10 @@ export type MutationDeletePromotionArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeletePromotionsArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteProvinceArgs = {
|
|
export type MutationDeleteProvinceArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -3001,14 +3055,26 @@ export type MutationDeleteRoleArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteRolesArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteSellerArgs = {
|
|
export type MutationDeleteSellerArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteSellersArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteShippingMethodArgs = {
|
|
export type MutationDeleteShippingMethodArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteShippingMethodsArgs = {
|
|
|
|
|
+ ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteStockLocationArgs = {
|
|
export type MutationDeleteStockLocationArgs = {
|
|
|
input: DeleteStockLocationInput;
|
|
input: DeleteStockLocationInput;
|
|
|
};
|
|
};
|
|
@@ -3017,6 +3083,10 @@ export type MutationDeleteTagArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteTaxCategoriesArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteTaxCategoryArgs = {
|
|
export type MutationDeleteTaxCategoryArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -3025,10 +3095,18 @@ export type MutationDeleteTaxRateArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteTaxRatesArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationDeleteZoneArgs = {
|
|
export type MutationDeleteZoneArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteZonesArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type MutationFlushBufferedJobsArgs = {
|
|
export type MutationFlushBufferedJobsArgs = {
|
|
|
bufferIds?: InputMaybe<Array<Scalars['String']>>;
|
|
bufferIds?: InputMaybe<Array<Scalars['String']>>;
|
|
|
};
|
|
};
|