Skip to content

Commit bcfae0c

Browse files
committed
extend CustomerInput schema
1 parent 76f9315 commit bcfae0c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,16 @@ type CustomerToken {
1818
}
1919

2020
input CustomerInput {
21-
firstname: String
22-
lastname: String
23-
email: String
24-
password: String
21+
prefix: String
22+
firstname: String!
23+
middlename: String!
24+
lastname: String!
25+
suffix: String
26+
dob: String
27+
taxvat: String
28+
gender: String
29+
email: String!
30+
password: String!
2531
is_subscribed: Boolean
2632
}
2733

0 commit comments

Comments
 (0)