Skip to content
This repository was archived by the owner on Dec 19, 2019. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions app/code/Magento/CustomerGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ type Customer @doc(description: "Customer defines the customer name and address
dob: String @doc(description: "The customer's date of birth")
taxvat: String @doc(description: "The customer's Tax/VAT number (for corporate customers)")
id: Int @doc(description: "The ID assigned to the customer")
is_subscribed: Boolean @doc(description: "An array containing the customer's shipping and billing addresses")
addresses: [CustomerAddress] @doc(description: "Indicates whether the customer is subscribed to the company's newsletter")
}
is_subscribed: Boolean @doc(description: "Indicates whether the customer is subscribed to the company's newsletter")
addresses: [CustomerAddress] @doc(description: "An array containing the customer's shipping and billing addresses")
}

type CustomerAddress @doc(description: "CustomerAddress contains detailed information about a customer's billing and shipping addresses"){
id: Int @doc(description: "The ID assigned to the address object")
Expand Down