Skip to content

Commit 0838f66

Browse files
ENGCOM-2637: Corrected field descriptions #138
- Merge Pull Request magento/graphql-ce#138 from keharper/graphql-ce:issue-136 - Merged commits: 1. 3623e5c
2 parents 1a968e0 + 3623e5c commit 0838f66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ type Customer @doc(description: "Customer defines the customer name and address
1919
dob: String @doc(description: "The customer's date of birth")
2020
taxvat: String @doc(description: "The customer's Tax/VAT number (for corporate customers)")
2121
id: Int @doc(description: "The ID assigned to the customer")
22-
is_subscribed: Boolean @doc(description: "An array containing the customer's shipping and billing addresses")
23-
addresses: [CustomerAddress] @doc(description: "Indicates whether the customer is subscribed to the company's newsletter")
24-
}
22+
is_subscribed: Boolean @doc(description: "Indicates whether the customer is subscribed to the company's newsletter")
23+
addresses: [CustomerAddress] @doc(description: "An array containing the customer's shipping and billing addresses")
24+
}
2525

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

0 commit comments

Comments
 (0)