Remove unused query

This commit is contained in:
Ramon Wenger 2020-11-19 17:09:22 +01:00
parent e34bae1734
commit 8f2e2ccb7d
1 changed files with 1 additions and 8 deletions

View File

@ -7,7 +7,6 @@
<script>
import {mapGetters, mapActions} from 'vuex';
import ASSIGNMENTS_QUERY from '@/graphql/gql/assignmentsQuery.gql';
import MODULE_DETAILS_QUERY from '@/graphql/gql/moduleDetailsQuery.gql';
import SCROLL_POSITION from '@/graphql/gql/local/scrollPosition.gql';
@ -22,8 +21,7 @@
data() {
return {
module: {},
assignments: []
module: {}
};
},
@ -49,11 +47,6 @@
}
};
},
assignments() {
return {
query: ASSIGNMENTS_QUERY
};
},
scrollPosition: {
query: SCROLL_POSITION
},