mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
15 lines
252 B
TypeScript
15 lines
252 B
TypeScript
import { PlayerFragment } from 'graphql/fragments';
|
|
|
|
export const GetMeQuery = /* GraphQL */ `
|
|
query GetMe {
|
|
me {
|
|
record: player {
|
|
...PlayerFragment
|
|
dashboardLayout
|
|
createdAt
|
|
}
|
|
}
|
|
}
|
|
${PlayerFragment}
|
|
`;
|