Exhibitors Query

Arguments

filters

CURL Request

curl -X POST https://api.certaintouchpoint.com/graphql \
  -H 'Content-Type: application/graphql' \
  -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' \
  -d '{exhibitors(gatheringId: 232) {name}}'

Query Example

CURL Request

curl -X POST https://api.certaintouchpoint.com/graphql \
  -H 'Content-Type: application/graphql' \
  -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' \
  -d '{ exhibitors(gatheringId: 232) { name email id website descrtipion }}'

Query Example

{
  exhibitors(gatheringId: 232) {
    name
    email
    id
    website
    description
    location
    createdAt
    updatedAt
  }
}

ExhibitorParams

Attributes