OBJECT
Order
The Order object returns all the information required when asking for information on an order
link GraphQL Schema definition
- type Order {
- : String
- : ID
- # See the User type for fields that can be accessed here
- : User
- # Arguments
- # format: the desired format of the date. Uses ISO8601 date and
- # time by default. See
- # https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/time/format/DateTimeFormatter.html#patterns
- # for a detailed description of how to specify alternative formats
- (: String): String
- # Arguments
- # format: the desired format of the date. Uses ISO8601 date and
- # time by default. See
- # https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/time/format/DateTimeFormatter.html#patterns
- # for a detailed description of how to specify alternative formats
- (: String): String
- : Int
- # The current status of the order
- : String!
- : Price
- : Float
- : Float
- : Price
- : Float
- : Float
- : Price
- : Float
- : Float
- : String
- # See the OrderLine type for fields that can be accessed here
- : [OrderLine]
- # See the Address type for fields that can be accessed here
- : Address
- : Address
- : String
- : String
- : String
- : String
- : String
- : Boolean
- : Boolean
- : String
- }