File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/code/Magento/CustomerGraphQl/etc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ input CustomerInput {
61
61
lastname : String @doc (description : " The customer's family name" )
62
62
suffix : String @doc (description : " A value such as Sr., Jr., or III" )
63
63
email : String @doc (description : " The customer's email address. Required" )
64
- dob : @ deprecated (reason : " The `dob` is deprecated. Use `date_of_birth` instead." ) String @doc ( description : " The customer's date of birth " )
64
+ dob : String @doc ( description : " The customer's date of birth " ) # deprecated(reason: "The `dob` is deprecated. Use `date_of_birth` instead.")
65
65
date_of_birth : String @doc (description : " The customer's date of birth" )
66
66
taxvat : String @doc (description : " The customer's Tax/VAT number (for corporate customers)" )
67
67
gender : Int @doc (description : " The customer's gender(Male - 1, Female - 2)" )
@@ -88,7 +88,7 @@ type Customer @doc(description: "Customer defines the customer name and address
88
88
email : String @doc (description : " The customer's email address. Required" )
89
89
default_billing : String @doc (description : " The ID assigned to the billing address" )
90
90
default_shipping : String @doc (description : " The ID assigned to the shipping address" )
91
- dob : @ deprecated (reason : " The `dob` is deprecated. Use `date_of_birth` instead." ) String @doc ( description : " The customer's date of birth " )
91
+ dob : String @doc ( description : " The customer's date of birth " ) # deprecated(reason: "The `dob` is deprecated. Use `date_of_birth` instead.")
92
92
date_of_birth : String @doc (description : " The customer's date of birth" )
93
93
taxvat : String @doc (description : " The customer's Tax/VAT number (for corporate customers)" )
94
94
id : Int @doc (description : " The ID assigned to the customer" )
You can’t perform that action at this time.
0 commit comments