Skip to content

Commit

Permalink
chore: update metaphysics graphql schema (#10923)
Browse files Browse the repository at this point in the history
  • Loading branch information
artsyit authored Oct 10, 2024
1 parent c2c5c35 commit 882bec0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4491,6 +4491,7 @@ type CommerceBuyOrder implements CommerceOrder {
orderUpdateState: String
paymentMethod: CommercePaymentMethodEnum
paymentMethodDetails: PaymentMethodUnion
paymentSet: Boolean!
requestedFulfillment: CommerceRequestedFulfillmentUnion

# Whether the buyer needs to complete identity verification to make this purchase.
Expand Down Expand Up @@ -4880,7 +4881,7 @@ type CommerceCreatePartnerOfferOrderPayload {
scalar CommerceDate

# An ISO 8601 datetime
scalar CommerceDateTime
scalar CommerceDateTime @specifiedBy(url: "https://tools.ietf.org/html/rfc3339")

enum CommerceEeiFormStatusEnum {
# approved
Expand Down Expand Up @@ -5338,6 +5339,7 @@ type CommerceOfferOrder implements CommerceOrder {
orderUpdateState: String
paymentMethod: CommercePaymentMethodEnum
paymentMethodDetails: PaymentMethodUnion
paymentSet: Boolean!
requestedFulfillment: CommerceRequestedFulfillmentUnion

# Whether the buyer needs to complete identity verification to make this purchase.
Expand Down Expand Up @@ -5623,6 +5625,7 @@ interface CommerceOrder {
orderUpdateState: String
paymentMethod: CommercePaymentMethodEnum
paymentMethodDetails: PaymentMethodUnion
paymentSet: Boolean!
requestedFulfillment: CommerceRequestedFulfillmentUnion

# Whether the buyer needs to complete identity verification to make this purchase.
Expand Down Expand Up @@ -5709,6 +5712,11 @@ type CommerceOrderActionData {
clientSecret: String!
}

enum CommerceOrderConnectionFilterEnum {
# payment failure preventing order from processing further
PAYMENT_FAILED
}

# Fields to sort by
enum CommerceOrderConnectionSortEnum {
# Sort by the timestamp the state of the order expires at in ascending order
Expand Down Expand Up @@ -16205,6 +16213,7 @@ type Query {

# Returns the elements in the list that come before the specified cursor.
before: String
filters: [CommerceOrderConnectionFilterEnum!] = []

# Returns the first _n_ elements from the list.
first: Int
Expand Down

0 comments on commit 882bec0

Please sign in to comment.