Skip to main content
Solved

How can I post a comment using a graphql query?

  • February 10, 2022
  • 2 replies
  • 297 views

juliamsantarosa

Hello community, 

 

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

 

Thanks a lot!

Best answer by alicereis

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

2 replies

alicereis
Forum|alt.badge.img+5
  • Inspiring
  • Answer
  • February 10, 2022

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


juliamsantarosa

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!