Menu
Developer Portal LogoDeveloper Portal
DocsSchemaAPI ExplorerHelpBlogUsers
Developer Portal LogoDeveloper Portal
  • Docs
  • Schema
  • API Explorer
  • Help
  • Blog
  • Users
  • Getting Started
    • Welcome
    • Join our Discord
    • Glossary
    • Intro to GraphQL
    • Authentication
    • Testing your Requests
    • Sending Requests
    • Rate Limits
    • Benefits of GraphQL
  • Query Examples
    • Get Event
    • Event Standings
    • Event Entrants
    • Events in Tournament
    • Entrants within a Tournament
    • League Schedule
    • League Standings
    • Sets in Event
    • Sets in Phase
    • Sets in Phase Group
    • Sets at Stations
    • Set Score
    • Sets by Player
    • Stream Queue
    • Set Entrants
    • Phase Groups in Phase
    • Phase Seeds
    • Pool Seeds
    • Attendee Counts
    • Tournaments by Location
    • Tournaments by Videogame
    • Tournaments by Owner
    • Attendees by Sponsor/Org
    • Get Game ID from Videogame Name
    • Shop Info
  • Mutation Examples
    • Report Set
  • Widgets & Embeds
    • Embedded Registration
  • Full Examples
    • Update Phase Seeding
    • Resolve Schedule Conflicts
    • Randomize Phase Seeding
  • OAuth
    • OAuth Overview
    • OAuth Scopes
    • Example OAuth Flow

Tournaments by Owner

In this example, we will query for upcoming tournaments filtered to particular owner (a user). Please note that this query will not retrieve all tournaments the user was an admin for. It will only return tournaments which that user created.

#Example

  • Request
  • Response
query TournamentsByOwner($perPage: Int!, $ownerId: ID!) {
tournaments(query: {
perPage: $perPage
filter: {
ownerId: $ownerId
}
}) {
nodes {
id
name
slug
}
}
},
{
"ownerId": 161429,
"perPage": 4
}
Edit this page
Previous

« Tournaments by Videogame

Next

Attendees by Sponsor/Org »

  • Example

Docs

  • Getting Started
  • Example Usage
  • API Explorer
  • Projects

start.gg

  • Home
  • Developer Settings

Community

  • Discord
  • Twitter
  • GitHub
start.gg
Copyright © 2025 start.gg