mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-23 20:07:35 -05:00
24 lines
320 B
TypeScript
24 lines
320 B
TypeScript
import { gql, DocumentNode } from "apollo-boost"
|
|
|
|
export interface MapVotesData {
|
|
mapVotes: {
|
|
name: string
|
|
sz: -1 | 0 | 1
|
|
tc: -1 | 0 | 1
|
|
rm: -1 | 0 | 1
|
|
cb: -1 | 0 | 1
|
|
}[]
|
|
}
|
|
|
|
export const MAP_VOTES: DocumentNode = gql`
|
|
{
|
|
mapVotes {
|
|
name
|
|
sz
|
|
tc
|
|
rm
|
|
cb
|
|
}
|
|
}
|
|
`
|