diff --git a/client/src/graphql/gql/sandbox/filterServerSideQuery.gql b/client/src/graphql/gql/sandbox/filterServerSideQuery.gql deleted file mode 100644 index 41c274d4..00000000 --- a/client/src/graphql/gql/sandbox/filterServerSideQuery.gql +++ /dev/null @@ -1,19 +0,0 @@ -query ContentBlockQuery { - chapters { - edges { - node { - id - slug - contentBlocks(userGroups: ["EE18B"]) { - edges { - node { - id - title - slug - } - } - } - } - } - } -} diff --git a/client/src/graphql/gql/sandbox/filteredBookQuery.gql b/client/src/graphql/gql/sandbox/filteredBookQuery.gql deleted file mode 100644 index 34a1334b..00000000 --- a/client/src/graphql/gql/sandbox/filteredBookQuery.gql +++ /dev/null @@ -1,31 +0,0 @@ -query BookQuery { - books { - edges { - node { - id - title - topics(first:1) { - edges { - node { - id - title - slug - teaser - modules(slug_Icontains:"ate") { - edges { - node { - id - title - slug - teaser - heroImage - } - } - } - } - } - } - } - } - } -} diff --git a/client/src/graphql/gql/sandbox/hiddenForContentBlockQuery.gql b/client/src/graphql/gql/sandbox/hiddenForContentBlockQuery.gql deleted file mode 100644 index 58e20095..00000000 --- a/client/src/graphql/gql/sandbox/hiddenForContentBlockQuery.gql +++ /dev/null @@ -1,23 +0,0 @@ -query ContentBlockQuery { - chapter(id: "RmlsdGVyZWRDaGFwdGVyTm9kZTo3") { - id - slug - contentBlocks { - edges { - node { - id - title - slug - hiddenFor { - edges { - node { - id - name - } - } - } - } - } - } - } -} diff --git a/client/src/graphql/gql/sandbox/masterBlasterQuery.gql b/client/src/graphql/gql/sandbox/masterBlasterQuery.gql deleted file mode 100644 index ce264b65..00000000 --- a/client/src/graphql/gql/sandbox/masterBlasterQuery.gql +++ /dev/null @@ -1,9 +0,0 @@ -query MasterBlasterQuery { - xAllUsers: allUsers { - edges { - node { - id - } - } - } -} diff --git a/client/src/graphql/gql/sandbox/masterBlasterSkillBox.gql b/client/src/graphql/gql/sandbox/masterBlasterSkillBox.gql deleted file mode 100644 index 82129da6..00000000 --- a/client/src/graphql/gql/sandbox/masterBlasterSkillBox.gql +++ /dev/null @@ -1,31 +0,0 @@ -query BooksQuery { - books { - edges { - node { - id - slug - title - - } - } - } - - topics { - edges { - node { - id - } - } - } - - modules { - edges { - node { - title - slug - heroImage - } - } - } - -} diff --git a/client/src/graphql/gql/sandbox/mutations/mutateContentBlock_setVisibility.gql b/client/src/graphql/gql/sandbox/mutations/mutateContentBlock_setVisibility.gql deleted file mode 100644 index 53fe63f6..00000000 --- a/client/src/graphql/gql/sandbox/mutations/mutateContentBlock_setVisibility.gql +++ /dev/null @@ -1,22 +0,0 @@ -mutation MutateContentBlock($input: MutateContentBlockInput!) { - mutateContentBlock(input: $input) { - contentBlock { - id - title - slug - } - errors - } -} - - - -# input - -#{"input": { -# "id": "Q29udGVudEJsb2NrTm9kZToyMQ==", -# "visibility": [{ -# "userGroupId": "VXNlckdyb3VwTm9kZToy", -# "hidden": false -# }] -#}} diff --git a/client/src/graphql/gql/sandbox/mutations/startUnitProgress.gql b/client/src/graphql/gql/sandbox/mutations/startUnitProgress.gql deleted file mode 100644 index b3088e47..00000000 --- a/client/src/graphql/gql/sandbox/mutations/startUnitProgress.gql +++ /dev/null @@ -1,8 +0,0 @@ -mutation startUnitProgressMutation($unitSlug: String!, $moduleSlug: String!) { - startUnitProgress(unitSlug: $unitSlug, moduleSlug: $moduleSlug) { - created - unitSlug - failed - exception - } -} diff --git a/client/src/graphql/gql/sandbox/roomEntriesQuery.gql b/client/src/graphql/gql/sandbox/roomEntriesQuery.gql deleted file mode 100644 index 2abdd98f..00000000 --- a/client/src/graphql/gql/sandbox/roomEntriesQuery.gql +++ /dev/null @@ -1,32 +0,0 @@ -query RoomsQuery { - room(id:"Um9vbU5vZGU6MTA=") { - id - title - slug - appearance - pk - roomEntries { - edges { - node { - id - slug - title - description - author { - id - firstName - lastName - } - } - } - } - } - allRooms(first:0) { - edges { - node { - id - } - } - } - -} diff --git a/client/src/graphql/gql/sandbox/roomsQuery.gql b/client/src/graphql/gql/sandbox/roomsQuery.gql deleted file mode 100644 index e05ac360..00000000 --- a/client/src/graphql/gql/sandbox/roomsQuery.gql +++ /dev/null @@ -1,18 +0,0 @@ -query RoomsQuery { - room(id:"Um9vbU5vZGU6Ng==") { - id - title - slug - appearance - pk - } - - allRooms(first:3) { - edges { - node { - id - title - } - } - } -}