"""Get a Collection either by id or slug. If neither id nor slug is specified, an error will result."""
type Query {
collection(id: ID, slug: String): Collection
}
"""Returns a list of eligible shipping methods for the draft Order"""
type Query {
eligibleShippingMethodsForDraftOrder(orderId: ID!): [ShippingMethodQuote!]!
}
entityDuplicators
queryentityDuplicators
"""Returns all configured EntityDuplicators."""
type Query {
entityDuplicators: [EntityDuplicatorDefinition!]!
}
"""Get a Product either by id or slug. If neither id nor slug is specified, an error will result."""
type Query {
product(id: ID, slug: String): Product
}
"""Returns all registered settings store field definitions with their current values"""
type Query {
settingsStoreFieldDefinitions: [SettingsStoreFieldDefinition!]!
}