Skip to content
This repository has been archived by the owner on Dec 19, 2019. It is now read-only.

Commit

Permalink
GraphQL-640: Input type declaration in GraphQL SDL cannot be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
naydav committed May 1, 2019
1 parent 8a65e48 commit 0959569
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions app/code/Magento/QuoteGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,9 @@ input SetPaymentMethodOnCartInput {

input PaymentMethodInput {
code: String! @doc(description:"Payment method code")
additional_data: PaymentMethodAdditionalDataInput @doc(description:"Additional payment data")
purchase_order_number: String @doc(description:"Purchase order number")
}

input PaymentMethodAdditionalDataInput

input SetGuestEmailOnCartInput {
cart_id: String!
email: String!
Expand Down Expand Up @@ -257,12 +254,9 @@ type AvailablePaymentMethod {
type SelectedPaymentMethod {
code: String! @doc(description: "The payment method code")
title: String! @doc(description: "The payment method title.")
additional_data: SelectedPaymentMethodAdditionalData @doc(description: "Additional payment data")
purchase_order_number: String @doc(description: "The purchase order number.")
}

type SelectedPaymentMethodAdditionalData

type AppliedCoupon {
code: String!
}
Expand Down

0 comments on commit 0959569

Please sign in to comment.