mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-24 05:37:56 -05:00
9 lines
115 B
TypeScript
9 lines
115 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const Player = gql`
|
|
fragment Player on Player {
|
|
id
|
|
totalXp
|
|
}
|
|
`;
|