tenebrous-dicebot/web-ui/crate/graphql/schema.graphql

17 lines
267 B
GraphQL

"User variable in a room."
type UserVariable {
roomId: String!
userId: String!
variableName: String!
value: Int!
}
type Query {
apiVersion: String!
variable(roomId: String!, userId: String!, variable: String!): UserVariable!
}
schema {
query: Query
}