Skip to content

Commit 6e32307

Browse files
author
Valeriy Nayda
committed
GraphQL-260: Fixed bug with uniq type
1 parent bf346d1 commit 6e32307

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ input SendEmailToFriendRecipientInput {
2222
email: String!
2323
}
2424

25+
type SendEmailToFriendOutput {
26+
sender: SendEmailToFriendSender
27+
recipients: [SendEmailToFriendRecipient]
28+
}
29+
2530
type SendEmailToFriendSender {
2631
name: String!
2732
email: String!
@@ -32,8 +37,3 @@ type SendEmailToFriendRecipient {
3237
name: String!
3338
email: String!
3439
}
35-
36-
type SendEmailToFriendOutput {
37-
sender: SendEmailToFriendSender
38-
recipients: [SendEmailToFriendRecipient]
39-
}

0 commit comments

Comments
 (0)