Files
TheGame/packages/web/graphql/mutations/idxCache.ts
2021-07-28 06:38:25 +05:30

11 lines
211 B
TypeScript

import gql from 'fake-tag';
export const InsertCacheInvalidation = gql`
mutation InsertCacheInvalidation($playerId: uuid!) {
updateIDXProfile(playerId: $playerId) {
success
error
}
}
`;