Solved

How can I post a comment using a graphql query?

  • 10 February 2022
  • 2 replies
  • 231 views

Userlevel 3

Hello community, 

 

I need to post a comment using Execute a GraphQL Query using Integromat, could anyone help me?

 

Thanks a lot!

icon

Best answer by alicereis 10 February 2022, 18:26

View original

2 replies

Userlevel 6
Badge +5

Hi, @juliamsantarosa!

 

You can use this mutation:

 

mutation{
createComment(input: {
clientMutationId: "<any name for your mutation>"
card_id: <card_id>
text: "<text>"

})
}

 

Hope this helps. Let me know if you still have any questions

Userlevel 3

Hi, @juliamsantarosa!

 

You can use this mutation:

 

mutation{
createComment(input: {
clientMutationId: "<any name for your mutation>"
card_id: <card_id>
text: "<text>"

})
}

 

Hope this helps. Let me know if you still have any questions

Hi, @alicereis!

That’s great! Thanks for your answear!

Will definitely help!

Reply