forked from projectmoon/tenebrous-dicebot
17 lines
267 B
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
|
||
|
}
|