mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
17 lines
343 B
TypeScript
17 lines
343 B
TypeScript
import gql from 'fake-tag';
|
|
|
|
export const UpdateAboutYouMutation = gql`
|
|
mutation UpdateAboutYou($playerId: uuid!, $input: player_set_input!) {
|
|
update_player_by_pk(pk_columns: { id: $playerId }, _set: $input) {
|
|
enneagram
|
|
playerType {
|
|
description
|
|
id
|
|
imageUrl
|
|
title
|
|
}
|
|
id
|
|
}
|
|
}
|
|
`;
|