mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import gql from 'fake-tag';
|
|
|
|
export const InsertCacheInvalidation = gql`
|
|
mutation InsertCacheInvalidation($playerId: uuid!) {
|
|
updateIDXProfile(playerId: $playerId) {
|
|
success
|
|
error
|
|
}
|
|
}
|
|
`;
|