mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-10 05:55:23 -05:00
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
|
|
}
|
|
}
|
|
}
|
|
`;
|