INTERFACE

Team

A team, either at the global level or within the context of an event

link GraphQL Schema definition

  • interface Team {
  • id: ID
  • # Uniquely identifying token for team. Same as the hashed part of the slug
  • discriminator: String
  • entrant: Entrant @deprecated( reason: "Use the entrant field off the EventTeam type" )
  • event: Event @deprecated( reason: "Use the event field off the EventTeam type" )
  • # Arguments
  • # type: [Not documented]
  • images(type: String): [Image]
  • # Arguments
  • # status: [Not documented]
  • members(status: [TeamMemberStatus]): [TeamMember]
  • name: String
  • }