Skip to content

Commit

Permalink
GraphQL-260: Fixed bug with uniq type
Browse files Browse the repository at this point in the history
  • Loading branch information
Valeriy Nayda committed Nov 22, 2018
1 parent bf346d1 commit 6e32307
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/code/Magento/SendFriendGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ input SendEmailToFriendRecipientInput {
email: String!
}

type SendEmailToFriendOutput {
sender: SendEmailToFriendSender
recipients: [SendEmailToFriendRecipient]
}

type SendEmailToFriendSender {
name: String!
email: String!
Expand All @@ -32,8 +37,3 @@ type SendEmailToFriendRecipient {
name: String!
email: String!
}

type SendEmailToFriendOutput {
sender: SendEmailToFriendSender
recipients: [SendEmailToFriendRecipient]
}

0 comments on commit 6e32307

Please sign in to comment.