Skip to content
requestCountrySupportMutation
requestCountrySupport(country: String!, region: String, note: String): RequestCountrySupportResult!

Register interest in Sessions supporting a country it can't yet onboard. Surfaced on the create-business country picker ("Request another country…"). country is free-form (the whole point is unsupported countries); region and note are optional. The request is logged as an internal country-request signal (and the caller's detected location is attached server-side). Always succeeds for any non-empty country.

Arguments

countryString!
regionString
noteString

Returns

RequestCountrySupportResult!

See RequestCountrySupportResult for the full shape.

Try it

Example
Query
mutation RequestCountrySupport($country: String!, $region: String, $note: String) {
  requestCountrySupport(country: $country, region: $region, note: $note) {
    __typename
  }
}
Variables
{}
POST https://go.sessions.website/api/graphql
requestCountrySupport