Skip to main content

Game

No description

type Game {
gameId: String!
mode: GameMode!
rule: GameRule!
type: GameType!
black: User!
white: User!
handicap: Int
kif: String
playTime: String!
position: String
result: Result
reason: Reason
tags: [Int!]
}

Fields

Game.gameId ● String! non-null scalar

Game.mode ● GameMode! non-null enum

Game.rule ● GameRule! non-null enum

Game.type ● GameType! non-null enum

Game.black ● User! non-null object

Game.white ● User! non-null object

Game.handicap ● Int scalar

Game.kif ● String scalar

Game.playTime ● String! non-null scalar

Game.position ● String scalar

Game.result ● Result enum

Game.reason ● Reason enum

Game.tags ● [Int!] list scalar

Returned By

game query ● games query

Member Of

User object