mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
52 lines
760 B
TypeScript
52 lines
760 B
TypeScript
import gql from 'fake-tag';
|
|
|
|
export const PlayerFragment = gql`
|
|
fragment PlayerFragment on Player {
|
|
id
|
|
username
|
|
totalXp
|
|
rank
|
|
ethereum_address
|
|
availability_hours
|
|
EnneagramType {
|
|
description
|
|
name
|
|
}
|
|
playerType {
|
|
description
|
|
id
|
|
imageUrl
|
|
title
|
|
}
|
|
Player_Skills {
|
|
Skill {
|
|
category
|
|
id
|
|
name
|
|
}
|
|
}
|
|
Accounts(where: { type: { _in: [TWITTER, GITHUB] } }) {
|
|
identifier
|
|
type
|
|
}
|
|
box_profile {
|
|
description
|
|
emoji
|
|
ethereumAddress
|
|
coverImageUrl
|
|
imageUrl
|
|
job
|
|
location
|
|
name
|
|
}
|
|
daohausMemberships {
|
|
id
|
|
moloch {
|
|
id
|
|
title
|
|
version
|
|
}
|
|
}
|
|
}
|
|
`;
|