OBJECT
ShippingOption
A shipping rule that might apply to a certain variant
link GraphQL Schema definition
- type ShippingOption implements Node {
- # Description for the shipping rule
- String :
- ID! :
- # The name used to identify the shipping rule
- String! :
- # The seller who created the shipping rule. If null then it was created by the
- # marketplace owner
- Seller :
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): ShippingProfileConnection ( :
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): ShippingRateConnection ( :
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): ShippingZoneConnection ( :
- # The type of shipping rule. Returns either 'marketplace' or 'seller'
- String! :
- ISO8601DateTime! :
- }