mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-22 20:58:01 -05:00
This is being merged for further testing so as to not block the progress of `develop` & not require more rebases.
17 lines
301 B
TypeScript
17 lines
301 B
TypeScript
import gql from 'fake-tag';
|
|
import { PlayerFragment } from 'graphql/fragments';
|
|
|
|
export const GetMeQuery = gql`
|
|
query GetMe($forLoginDisplay: Boolean! = false) {
|
|
me {
|
|
id
|
|
ethereumAddress
|
|
username
|
|
player {
|
|
...PlayerFragment
|
|
}
|
|
}
|
|
}
|
|
${PlayerFragment}
|
|
`;
|