ShopSettingsInput Input Type
No description
input ShopSettingsInput {
headerText: String
description: String
trackInventoryByDefault: Boolean
defaultWeightUnit: WeightUnitsEnum
fulfillmentAutoApprove: Boolean
fulfillmentAllowUnpaid: Boolean
defaultMailSenderName: String
defaultMailSenderAddress: String
customerSetPasswordUrl: String
reserveStockDurationAnonymousUser: Int
reserveStockDurationAuthenticatedUser: Int
limitQuantityPerCheckout: Int
enableAccountConfirmationByEmail: Boolean
allowLoginWithoutConfirmation: Boolean
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
preserveAllAddressFields: Boolean
passwordLoginMode: PasswordLoginModeEnum
useLegacyShippingZoneStockAvailability: Boolean
includeTaxesInPrices: Boolean @deprecated
displayGrossPrices: Boolean @deprecated
chargeTaxesOnShipping: Boolean @deprecated
useLegacyUpdateWebhookEmission: Boolean @deprecated
}
Fields
headerText ● String
Header text.
description ● String
SEO description.
trackInventoryByDefault ● Boolean
This field is used as a default value for ProductVariant.trackInventory.
defaultWeightUnit ● WeightUnitsEnum
Default weight unit.
fulfillmentAutoApprove ● Boolean
Enable automatic approval of all new fulfillments.
fulfillmentAllowUnpaid ● Boolean
Enable ability to approve fulfillments which are unpaid.
defaultMailSenderName ● String
Default email sender's name.
defaultMailSenderAddress ● String
Default email sender's address.
customerSetPasswordUrl ● String
URL of a view where customers can set their password.
reserveStockDurationAnonymousUser ● Int
Default number of minutes stock will be reserved for anonymous checkout. Enter 0 or null to disable.
reserveStockDurationAuthenticatedUser ● Int
Default number of minutes stock will be reserved for authenticated checkout. Enter 0 or null to disable.
limitQuantityPerCheckout ● Int
Default number of maximum line quantity in single checkout. Minimum possible value is 1, default value is 50.
enableAccountConfirmationByEmail ● Boolean
Enable automatic account confirmation by email.
allowLoginWithoutConfirmation ● Boolean
Enable possibility to login without account confirmation.
metadata ● [MetadataInput!]
Shop public metadata. Can be read by any API client authorized to read the object it's attached to.
Warning: never store sensitive information, including financial data such as credit card details.
privateMetadata ● [MetadataInput!]
Shop private metadata. Requires permissions to modify and to read the metadata of the object it's attached to.
Warning: never store sensitive information, including financial data such as credit card details.
preserveAllAddressFields ● Boolean
When enabled, address fields that are not valid for a given country (according to Google's i18n address data) will be preserved instead of being removed during validation. Validation errors are still returned.
Added in Saleor 3.22passwordLoginMode ● PasswordLoginModeEnum
Controls whether password-based authentication is allowed.
Added in Saleor 3.23useLegacyShippingZoneStockAvailability ● Boolean
When enabled, stock availability is filtered by shipping zones and the destination address (legacy behavior). When disabled, stock availability is determined only by the direct warehouse-channel link, ignoring shipping zones.
Added in Saleor 3.23Show deprecatedHide deprecated
includeTaxesInPrices ● Boolean
Use taxConfigurationUpdate mutation to configure this setting per channel or country.
Include taxes in prices.
displayGrossPrices ● Boolean
Use taxConfigurationUpdate mutation to configure this setting per channel or country.
Display prices with tax in store.
chargeTaxesOnShipping ● Boolean
To enable taxes for a shipping method, assign a tax class to the shipping method with shippingPriceCreate or shippingPriceUpdate mutations.
Charge taxes on shipping.
useLegacyUpdateWebhookEmission ● Boolean
No longer supported
Use legacy update webhook emission. When enabled, update webhooks (e.g. customerUpdated,productVariantUpdated) are sent even when only metadata changes. When disabled, update webhooks are not sent for metadata-only changes; only metadata-specific webhooks (e.g., customerMetadataUpdated, productVariantMetadataUpdated) are sent.
Member Of
shopSettingsUpdate mutation