Update schema
This commit is contained in:
parent
68a4efdf49
commit
cc32a2fda5
1 changed files with 7 additions and 0 deletions
|
@ -3327,6 +3327,8 @@ type ProductVariantUpdatePrivateMeta {
|
|||
type Query {
|
||||
webhook(id: ID!): Webhook
|
||||
webhooks(filter: WebhookFilterInput, before: String, after: String, first: Int, last: Int): WebhookCountableConnection
|
||||
webhookEvents: [WebhookEvent]
|
||||
webhookSamplePayload(eventType: WebhookEventTypeEnum!): JSONString
|
||||
translations(kind: TranslatableKinds!, before: String, after: String, first: Int, last: Int): TranslatableItemConnection
|
||||
shop: Shop
|
||||
shippingZone(id: ID!): ShippingZone
|
||||
|
@ -3744,6 +3746,8 @@ type Shop {
|
|||
currencies: [String]!
|
||||
defaultCurrency: String!
|
||||
defaultCountry: CountryDisplay
|
||||
defaultMailSenderName: String
|
||||
defaultMailSenderAddress: String
|
||||
description: String
|
||||
domain: Domain!
|
||||
homepageCollection: Collection
|
||||
|
@ -3810,6 +3814,8 @@ input ShopSettingsInput {
|
|||
automaticFulfillmentDigitalProducts: Boolean
|
||||
defaultDigitalMaxDownloads: Int
|
||||
defaultDigitalUrlValidDays: Int
|
||||
defaultMailSenderName: String
|
||||
defaultMailSenderAddress: String
|
||||
}
|
||||
|
||||
type ShopSettingsTranslate {
|
||||
|
@ -4317,6 +4323,7 @@ enum WebhookErrorCode {
|
|||
|
||||
type WebhookEvent {
|
||||
eventType: WebhookEventTypeEnum
|
||||
name: String
|
||||
}
|
||||
|
||||
enum WebhookEventTypeEnum {
|
||||
|
|
Loading…
Reference in a new issue