OBJECT
CommissionPackage
Commission package holding commission rates for all taxons (or categories)
link GraphQL Schema definition
- type CommissionPackage implements Node {
- # Apply commission to line item postage
- Boolean! :
- # When the record was created
- ISO8601DateTime! :
- # Custom commission rate belonging to a taxon (or category) within a commission
- # package
- #
- # 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 :
- ): CustomCommissionRateConnection
- # The default flag identifies the default commission package in the marketplace
- # Only accessible to users: admin_visible. And admin users with permissions:
- # 'Manage commissions', 'Full GraphQL API access'.
- Boolean! :
- ID! :
- # Name of the commission package - e.g. Bronze Package
- String! :
- # The commission rate for the specified Taxon (or Category)
- Decimal! :
- # Sellers thats use the commission package
- #
- # 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): SellerConnection! ( :
- # When the record was last updated
- ISO8601DateTime! :
- }