Arguments
gatheringId: (Int!)
id: (Int!)
attendee: (ExhibitorParams)
GraphQL Mutation
mutation {
updateExhibitor(exhibitor: {name: "OmniCorp" }, gatheringId: 232, id: 71111) {
name
id
}
}
CURL Request
curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' -d '{ mutation { updateExhibitor(exhibitor: { name: "OmniCorp"}, gatheringId: 232, id: 71111) { name id } }'
GraphQL Response
{“data":
{ "updateExhibitor":
{ "name":"OmniCorp",
"id":"71111"
}
}
}
ExhibitorParams
name
(String!) Display name of exhibitor.email
(String) Contact email for exhibitor.description
(String) Description for exhibitor. HTML supported.website
(String) Website URL for exhibitor.location
(LocationParams) Location name. Note that Location params are structured { name: "Booth 42" }
Comments
0 comments
Please sign in to leave a comment.