mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-11 22:45:04 -05:00
* squash frontend changes * Style quest explorer * Style quest page * Dates * Dates * Typecheck * Prettier * Fix create page layout * Update only OPEN quests * Repetition info * Fix create quest errors * Quest form Textarea * Quest form Textarea * Truncate texts * Redirect if user not logged in * Tooltips * Factorize skills tags * fix username in completions * Metafam as default guild on creation * Layouts * Remove todo * cooldown * Rename to "claim quest" * squash frontend changes * Style quest explorer * Style quest page * Dates * Dates * Typecheck * Prettier * Fix create page layout * Update only OPEN quests * Repetition info * Fix create quest errors * Quest form Textarea * Quest form Textarea * Truncate texts * Redirect if user not logged in * Tooltips * Factorize skills tags * fix username in completions * Metafam as default guild on creation * Layouts * Remove todo * cooldown * Rename to "claim quest" * Move ConfirmModal in ds * Extract pSeed balance * Fix "created by me" switch * Reword complete quest * Style quest form * prettier * lint
18 lines
395 B
TypeScript
18 lines
395 B
TypeScript
import gql from 'fake-tag';
|
|
|
|
export const CreateQuestCompletionMutation = gql`
|
|
mutation CreateQuestCompletion($input: CreateQuestCompletionInput!) {
|
|
createQuestCompletion(questCompletion: $input) {
|
|
success
|
|
error
|
|
quest_completion_id
|
|
quest_completion {
|
|
id # We add this for urql to update the cache
|
|
quest {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|