You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/CustomerGraphQl/etc/schema.graphqls
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,7 @@ type Customer @doc(description: "Defines the customer name, addresses, and other
147
147
dob: String@doc(description: "The customer's date of birth.") @deprecated(reason: "Use `date_of_birth` instead.")
148
148
date_of_birth: String@doc(description: "The customer's date of birth.")
149
149
taxvat: String@doc(description: "The customer's Value-added tax (VAT) number (for corporate customers).")
150
-
id: Int@doc(description: "The ID assigned to the customer.") @deprecated(reason: "`id` is not needed as part of `Customer`, because on the server side, it can be identified based on the customer token used for authentication. There is no need to know customer ID on the client side.")
150
+
id: ID!@doc(description: "The unique ID assigned to the customer.")
151
151
is_subscribed: Boolean@doc(description: "Indicates whether the customer is subscribed to the company's newsletter.") @resolver(class: "\\Magento\\NewsletterGraphQl\\Model\\Resolver\\IsSubscribed")
152
152
addresses: [CustomerAddress] @doc(description: "An array containing the customer's shipping and billing addresses.") @resolver(class: "\\Magento\\CustomerGraphQl\\Model\\Resolver\\CustomerAddresses")
0 commit comments