diff --git a/client/src/graphql/gql/sandbox/mutations/defineActionPlan.gql b/client/src/graphql/gql/sandbox/mutations/defineActionPlan.gql deleted file mode 100644 index e4ffc32a..00000000 --- a/client/src/graphql/gql/sandbox/mutations/defineActionPlan.gql +++ /dev/null @@ -1,7 +0,0 @@ -mutation DefineActionPlan($input: DefineActionPlanInput!) { - defineActionPlan(input: $input) { - userModuleProgress { - id - } - } -} diff --git a/client/src/graphql/gql/sandbox/mutations/mutateContentBlock.gql b/client/src/graphql/gql/sandbox/mutations/mutateContentBlock.gql new file mode 100644 index 00000000..c688a606 --- /dev/null +++ b/client/src/graphql/gql/sandbox/mutations/mutateContentBlock.gql @@ -0,0 +1,22 @@ +mutation MutateContentBlock($input: MutateContentBlockInput!) { + mutateContentBlock(input: $input) { + contentBlock { + id + title + slug + } + errors + } +} + + + +// input + +{ + "input": { + "id": "Q29udGVudEJsb2NrTm9kZToyMQ==", + "type": "plain", + "title": "Hallo Daniel" + } +}