load
This commit is contained in:
45
graphql/fragments/OrderOrCheckoutSourceObject.graphql
Normal file
45
graphql/fragments/OrderOrCheckoutSourceObject.graphql
Normal file
@@ -0,0 +1,45 @@
|
||||
fragment OrderOrCheckoutSourceObject on OrderOrCheckout {
|
||||
__typename
|
||||
... on Checkout {
|
||||
id
|
||||
languageCode
|
||||
channel {
|
||||
id
|
||||
slug
|
||||
}
|
||||
userEmail: email
|
||||
billingAddress {
|
||||
...TransactionInitializeSessionAddress
|
||||
}
|
||||
shippingAddress {
|
||||
...TransactionInitializeSessionAddress
|
||||
}
|
||||
total: totalPrice {
|
||||
gross {
|
||||
...Money
|
||||
}
|
||||
}
|
||||
...OrderOrCheckoutLines
|
||||
}
|
||||
... on Order {
|
||||
id
|
||||
languageCodeEnum
|
||||
userEmail
|
||||
channel {
|
||||
id
|
||||
slug
|
||||
}
|
||||
billingAddress {
|
||||
...TransactionInitializeSessionAddress
|
||||
}
|
||||
shippingAddress {
|
||||
...TransactionInitializeSessionAddress
|
||||
}
|
||||
total {
|
||||
gross {
|
||||
...Money
|
||||
}
|
||||
}
|
||||
...OrderOrCheckoutLines
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user