OBJECT
Shop
link GraphQL Schema definition
- type Shop {
- # Internal code for which the shop is referenced.
- : String!
- # Serialized list of countries to return from
- : String!
- # Serialized list of options for select of countries to return from
- : String!
- # Creation time for the shop
- : ISO8601DateTime!
- # Paperless UPS label is allowed
- : Boolean!
- # Price which the user needs to pay to get its dropoff letterbox parcel returned
- : Int
- # Price which the user needs to pay to get its dropoff normal size parcel returned
- : Int
- # Approving shipments is enabled
- : Boolean!
- # Indicates whether the shop offers free shipments or the users pay for this
- # service.
- : Boolean
- # Indicates whether the shop has a hired Retunista to pickup parcels in the
- # Netherlands or not.
- : Boolean
- # Unique identifier for the shop.
- : String!
- # Show the insurance tick in the shipments form
- : Boolean!
- # Name of the shop which is presented to the end consumer
- : String!
- # UPS, DHL and so on
- : [String!]
- # Price that can be taken or not
- : Int
- # Paperless UPS label is allowed
- : [String!]!
- # Price which the user needs to pay to get its pickup parcel returned
- : Int
- # Lists of prices for different shipping networks
- : [PriceList!]!
- # Repair shop?
- : Boolean!
- # Serialized options for return reason select
- : String!
- # List of cities where this shop can offer same-day pickups
- : [String!]!
- # Url of the shop
- : String
- # Show field name
- : Boolean!
- # Show return reasons or not
- : Boolean!
- # Slug used as a subdomain in the Returnista portal for the shop.
- : String!
- # Terms and conditions URL
- : String
- # Last time when the shop was updated
- : ISO8601DateTime!
- }