Hey guys, I am starting with GraphiQL and trying to create a query for inviteMembers for an organization, however, I am not being able to identify what is wrong here. Could you please clarify?
I used this topic here, but didn’t work:
mutation {
inviteMembers(input: {
emails:i
{email:"teste@teste.com" role_name:"member"},
{email:"teste1@teste.com", role_name:"member"},
{email:"teste@teste.com", role_name:"member"}
]
organization_id: 12345
message: "please join my organization - Postman"}) {
clientMutationId
errors {index, message}
}
}