Fix Apollo IDE integration and update schema.graphql file

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-06-17 09:51:11 +02:00
parent 3c2dfba880
commit b52c2bb1d1
2 changed files with 479 additions and 86 deletions

12
apollo.config.js Normal file
View File

@@ -0,0 +1,12 @@
// apollo.config.js
module.exports = {
client: {
service: {
name: "Mobilizon",
// URL to the GraphQL API
localSchemaFile: "./schema.graphql",
},
// Files processed by the extension
includes: ["js/src/**/*.vue", "js/src/**/*.js"],
},
};