Skip to content
activitiesQuery
activities(near: GeoPointInput, metadata: [MetadataFilterInput!]): [Activity!]!

Public discovery feed of activities across visible businesses. When near (or, when omitted, the request's inferred location) yields a country, results are gated to businesses in that country and ordered nearest-first by the business's geocoded location. With no location signal at all, falls back to newest-first across every visible business.

metadata filters the feed to activities carrying matching well-known metadata values (skill level, age range, …). An activity matches an entry when any value stored under that key is in the entry's values; multiple entries are AND-ed together.

Arguments

Returns

[Activity!]!

See Activity for the full shape.

Try it

List all discoverable activities
Returns every Activity surfaced in the public discovery feed.
Query
query Activities {
  activities {
    id
    name
    type
  }
}
Variables
{}
POST https://go.sessions.website/api/graphql
activities