diff --git a/client/src/components/Chapter.vue b/client/src/components/Chapter.vue
index 5e845597..5fa0a530 100644
--- a/client/src/components/Chapter.vue
+++ b/client/src/components/Chapter.vue
@@ -65,7 +65,7 @@ import {hidden} from '@/helpers/visibility';
import {CONTENT_TYPE, CHAPTER_DESCRIPTION_TYPE, CHAPTER_TITLE_TYPE} from '@/consts/types';
import UPDATE_CHAPTER_BOOKMARK_MUTATION from '@/graphql/gql/mutations/updateChapterBookmark.gql';
-import CHAPTER_QUERY from '@/graphql/gql/chapterQuery.gql';
+import CHAPTER_QUERY from '@/graphql/gql/queries/chapterQuery.gql';
import me from '@/mixins/me';
diff --git a/client/src/components/ContentBlock.vue b/client/src/components/ContentBlock.vue
index c0490b65..637f3171 100644
--- a/client/src/components/ContentBlock.vue
+++ b/client/src/components/ContentBlock.vue
@@ -57,7 +57,7 @@
import VisibilityAction from '@/components/visibility/VisibilityAction';
import ContentComponent from '@/components/content-blocks/ContentComponent';
- import CHAPTER_QUERY from '@/graphql/gql/chapterQuery.gql';
+ import CHAPTER_QUERY from '@/graphql/gql/queries/chapterQuery.gql';
import DELETE_CONTENT_BLOCK_MUTATION from '@/graphql/gql/mutations/deleteContentBlock.gql';
import {mapState} from 'vuex';
diff --git a/client/src/components/book-navigation/BookTopicNavigation.vue b/client/src/components/book-navigation/BookTopicNavigation.vue
index 0e039c06..eac54326 100644
--- a/client/src/components/book-navigation/BookTopicNavigation.vue
+++ b/client/src/components/book-navigation/BookTopicNavigation.vue
@@ -16,7 +16,7 @@
+
+
diff --git a/client/src/pages/snapshot/snapshots.vue b/client/src/pages/snapshot/snapshots.vue
index 1b57936b..c03c8adc 100644
--- a/client/src/pages/snapshot/snapshots.vue
+++ b/client/src/pages/snapshot/snapshots.vue
@@ -15,7 +15,7 @@
+
+
diff --git a/client/src/pages/topic.vue b/client/src/pages/topic.vue
index a48f1dfc..6ccbd8bf 100644
--- a/client/src/pages/topic.vue
+++ b/client/src/pages/topic.vue
@@ -43,12 +43,12 @@
import ModuleTeaser from '@/components/modules/ModuleTeaser.vue';
import PlayIcon from '@/components/icons/Play';
import BulbIcon from '@/components/icons/BulbIcon';
- import TOPIC_QUERY from '@/graphql/gql/topicQuery.gql';
+ import TOPIC_QUERY from '@/graphql/gql/queries/topicQuery.gql';
import me from '@/mixins/me';
import BookTopicNavigation from '@/components/book-navigation/BookTopicNavigation';
import UPDATE_LAST_TOPIC_MUTATION from '@/graphql/gql/mutations/updateLastTopic.gql';
- import ME_QUERY from '@/graphql/gql/meQuery.gql';
+ import ME_QUERY from '@/graphql/gql/queries/meQuery.gql';
export default {