mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-22 12:48:04 -05:00
17 lines
302 B
TypeScript
17 lines
302 B
TypeScript
import gql from 'fake-tag';
|
|
import { PlayerFragment } from 'graphql/fragments';
|
|
|
|
export const GetMeQuery = gql`
|
|
query GetMe($forLoginDisplay: Boolean! = false) {
|
|
me {
|
|
id
|
|
ethereum_address
|
|
username
|
|
player {
|
|
...PlayerFragment
|
|
}
|
|
}
|
|
}
|
|
${PlayerFragment}
|
|
`;
|