mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-18 02:11:19 -05:00
21 lines
329 B
TypeScript
21 lines
329 B
TypeScript
import { gql, DocumentNode } from "apollo-boost"
|
|
|
|
export const USER: DocumentNode = gql`
|
|
{
|
|
user {
|
|
id
|
|
username
|
|
twitter_name
|
|
discord_id
|
|
custom_url
|
|
plus {
|
|
membership_status
|
|
plus_region
|
|
vouch_status
|
|
can_vouch
|
|
can_vouch_again_after
|
|
}
|
|
}
|
|
}
|
|
`
|