Skip to content

Commit 2f995d1

Browse files
author
Tobias Maile
committed
GraphQL-202: [Mutations] adds description and category_id as parameter
1 parent 505ac52 commit 2f995d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See COPYING.txt for license details.
33

44
type Mutation {
5-
sendEmailToFriend (input: SendEmailToFriendSenderInput): SendEmailToFriendOutput @resolver(class: "\\Magento\\SendFriendGraphQl\\Model\\Resolver\\SendEmailToFriend") @doc(description:"@todo")
5+
sendEmailToFriend (input: SendEmailToFriendSenderInput): SendEmailToFriendOutput @resolver(class: "\\Magento\\SendFriendGraphQl\\Model\\Resolver\\SendEmailToFriend") @doc(description:"Recommends Product by Sending Single/Multiple Email")
66
}
77

88
input SendEmailToFriendSenderInput {
@@ -16,9 +16,9 @@ type Sender {
1616
email: String!
1717
message: String!
1818
}
19-
#@todo Prams can be removed if dispatching of event in app/code/Magento/SendFriendGraphQl/Model/Resolver/SendEmailToFriend.php not needed
2019
type Params {
2120
product_id: Int!
21+
category_id: Int!
2222
}
2323

2424
type Recipient {

0 commit comments

Comments
 (0)