OBJECT
MeasurementUnit
Measurement unit
link GraphQL Schema definition
- type MeasurementUnit implements Node {
- # List of adverts implementing the measurement unit
- #
- # 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 :
- ): AdvertsConnection! @deprecated( reason: "This was previously used to get the number of adverts associated to the measurement unit. Use advertsCount instead." )
- # The number of adverts implementing the measurement unit
- Int! :
- # List of comparable variants implementing the measurement unit
- #
- # 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 :
- ): VariantConnection! @deprecated( reason: "This was previously used to get the number of comparable variants implementing the measurement unit. Use variantsCount instead." )
- # When the record was created
- ISO8601DateTime! :
- ID! :
- # The field that represents the measurement unit type
- String! :
- # Full name of measurement unit (eg: kilograms)
- String! :
- # Short code for the measurement unit (eg: kg)
- String! :
- # When the record was last updated
- ISO8601DateTime! :
- # List of variants implementing the measurement unit
- #
- # 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 :
- ): VariantConnection! @deprecated( reason: "This was previously used to get the number of variants implementing the measurement unit. Use variantsCount instead." )
- # The maximum of the count of variants and comparable variants implementing the
- # measurement unit
- Int! :
- }