Skip to content

Commit 7cc0319

Browse files
committed
GraphQL-640: Input type declaration in GraphQL SDL cannot be empty
1 parent b230831 commit 7cc0319

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

app/code/Magento/QuoteGraphQl/etc/schema.graphqls

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,9 @@ input SetPaymentMethodOnCartInput {
130130

131131
input PaymentMethodInput {
132132
code: String! @doc(description:"Payment method code")
133-
additional_data: PaymentMethodAdditionalDataInput @doc(description:"Additional payment data")
134133
purchase_order_number: String @doc(description:"Purchase order number")
135134
}
136135

137-
input PaymentMethodAdditionalDataInput
138-
139136
input SetGuestEmailOnCartInput {
140137
cart_id: String!
141138
email: String!
@@ -257,12 +254,9 @@ type AvailablePaymentMethod {
257254
type SelectedPaymentMethod {
258255
code: String! @doc(description: "The payment method code")
259256
title: String! @doc(description: "The payment method title.")
260-
additional_data: SelectedPaymentMethodAdditionalData @doc(description: "Additional payment data")
261257
purchase_order_number: String @doc(description: "The purchase order number.")
262258
}
263259

264-
type SelectedPaymentMethodAdditionalData
265-
266260
type AppliedCoupon {
267261
code: String!
268262
}

0 commit comments

Comments
 (0)