From a1f6bac6831757993d515cbcaee3fd05ea4aab75 Mon Sep 17 00:00:00 2001 From: ranosys Date: Thu, 31 Jan 2019 11:04:56 +0530 Subject: [PATCH] #326 added The exclamation point to input type field --- app/code/Magento/CustomerGraphQl/etc/schema.graphqls | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/code/Magento/CustomerGraphQl/etc/schema.graphqls b/app/code/Magento/CustomerGraphQl/etc/schema.graphqls index c92753b96225..0daa7f2212dc 100644 --- a/app/code/Magento/CustomerGraphQl/etc/schema.graphqls +++ b/app/code/Magento/CustomerGraphQl/etc/schema.graphqls @@ -16,15 +16,15 @@ type Mutation { } input CustomerAddressInput { - firstname: String @doc(description: "The first name of the person associated with the shipping/billing address") - lastname: String @doc(description: "The family name of the person associated with the shipping/billing address") + firstname: String! @doc(description: "The first name of the person associated with the shipping/billing address") + lastname: String! @doc(description: "The family name of the person associated with the shipping/billing address") company: String @doc(description: "The customer's company") - telephone: String @doc(description: "The telephone number") - street: [String] @doc(description: "An array of strings that define the street number and name") - city: String @doc(description: "The city or town") + telephone: String! @doc(description: "The telephone number") + street: [String]! @doc(description: "An array of strings that define the street number and name") + city: String! @doc(description: "The city or town") region: CustomerAddressRegionInput @doc(description: "An object containing the region name, region code, and region ID") postcode: String @doc(description: "The customer's ZIP or postal code") - country_id: CountryCodeEnum @doc(description: "The customer's country") + country_id: CountryCodeEnum! @doc(description: "The customer's country") default_shipping: Boolean @doc(description: "Indicates whether the address is the default shipping address") default_billing: Boolean @doc(description: "Indicates whether the address is the default billing address") fax: String @doc(description: "The fax number")