mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 05:25:15 -05:00
9 lines
116 B
TypeScript
9 lines
116 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const Player = gql`
|
|
fragment Player on player {
|
|
id
|
|
total_xp
|
|
}
|
|
`;
|