Skip to content
This repository was archived by the owner on Dec 19, 2019. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions app/code/Magento/CustomerGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down