mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 21:45:53 -05:00
10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const Player = gql`
|
|
fragment Player on Player {
|
|
id
|
|
rank
|
|
totalXp
|
|
}
|
|
`;
|