mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
* update username flow * skills/memberships not shown if non-existent * better errors * styling for player tiles * cover image for player tile
13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
import gql from 'fake-tag';
|
|
|
|
export const UpdateUsernameMutation = gql`
|
|
mutation UpdatePlayerUsername($username: String!) {
|
|
update_Player(_set: { username: $username }, where: {}) {
|
|
returning {
|
|
id
|
|
username
|
|
}
|
|
}
|
|
}
|
|
`;
|