mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-08 21:15:05 -05:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import gql from 'fake-tag';
|
|
|
|
export const UpdateProfileMutation = gql`
|
|
mutation UpdateProfile($playerId: uuid!, $input: player_set_input!) {
|
|
update_player_by_pk(pk_columns: { id: $playerId }, _set: $input) {
|
|
id
|
|
availability_hours
|
|
timezone
|
|
}
|
|
}
|
|
`;
|
|
|