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
  • appliesToPostage: Boolean!
  • # When the record was created
  • createdAt: 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.
  • customCommissionRates(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int
  • ): CustomCommissionRateConnection
  • # The default flag identifies the default commission package in the marketplace
  • default: Boolean!
  • id: ID!
  • # Name of the commission package - e.g. Bronze Package
  • name: String!
  • # The commission rate for the specified Taxon (or Category)
  • rate: 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.
  • sellers(after: String, before: String, first: Int, last: Int): SellerConnection!
  • # When the record was last updated
  • updatedAt: ISO8601DateTime!
  • }