github.com/ryicoh/apery-graphql@v0.0.0-20210919090814-a8c219904bee/pkg/schema.graphqls (about)

     1  input EvaluateInput {
     2    sfen: String!
     3    moves: [String!]!
     4    timeoutSecond: Int!
     5  }
     6  
     7  type EvaluateOutput {
     8    value: Int!
     9    nodes: Int!
    10    depth: Int!
    11    bestmove: String!
    12    pv: [String!]!
    13  }
    14  
    15  type Query {
    16    evaluate(input: EvaluateInput!): EvaluateOutput!
    17  }
    18  
    19  type Mutation {
    20    foo: Boolean!
    21  }