INPUT_OBJECT

SetFilters

link GraphQL Schema definition

  • input SetFilters {
  • # Only return Sets for these Entrants
  • entrantIds: [ID]
  • # Only return Sets for this Entrant size. For example, to fetch 1v1 Sets only,
  • # filter by an entrantSize of 1
  • entrantSize: [Int]
  • # Only return Sets that have an attached VOD
  • hasVod: Boolean
  • # Do not return empty Sets. For example, set this to true to filter out sets that
  • # are waiting for progressions.
  • hideEmpty: Boolean
  • # Return sets that contain a bye
  • showByes: Boolean
  • # Only return Sets that are in an Online event. If omitted, Sets for both online
  • # and offline Events are returned
  • isEventOnline: Boolean
  • # Only return Sets in certain geographical areas.
  • location: SetFilterLocation
  • # Only return Sets for these Participants
  • participantIds: [ID]
  • # Only return Sets in these PhaseGroups
  • phaseGroupIds: [ID]
  • # Only return Sets in these Phases
  • phaseIds: [ID]
  • # Only return Sets in these Events
  • eventIds: [ID]
  • # Only return Sets in these Tournaments
  • tournamentIds: [ID]
  • # Only return Sets for these Players
  • playerIds: [ID]
  • # Only return Sets for these Rounds
  • roundNumber: Int
  • # Only returns Sets that are in these states
  • state: [Int]
  • # Only return Sets that are assigned to these Station IDs
  • stationIds: [ID]
  • # Only return Sets that are assigned to these Station numbers
  • stationNumbers: [Int]
  • # Only return sets created or updated since this timestamp
  • updatedAfter: Timestamp
  • }