Skip to content
businessQuery
business(id: ID, handle: String): Business

Arguments

idID
handleString

Returns

Business

See Business for the full shape.

Try it

Look up a business by handle
Resolves a business by its public handle (the slug after @ on a Sessions Go URL).
Query
query Business($handle: String!) {
  business(handle: $handle) {
    id
    name
    handle
    description
  }
}
Variables
{
  "handle": "ottawa-volleyball"
}
POST https://go.sessions.website/api/graphql
business