Skip to content
disputeMatchMutation
disputeMatch(session: EntityRef!, reason: String): DisputeMatchResult!

Dispute a completed league result (only under immediate scoring). Flags the match for staff adjudication; allowed for a captain of either team.

Arguments

sessionEntityRef!
reasonString

Returns

DisputeMatchResult!

See DisputeMatchResult for the full shape.

Try it

Example
Query
mutation DisputeMatch($session: EntityRef!, $reason: String) {
  disputeMatch(session: $session, reason: $reason) {
    __typename
  }
}
Variables
{}
POST https://go.sessions.website/api/graphql
disputeMatch