forked from Shopify/example-app--qr-code--remix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.graphqlrc.js
36 lines (31 loc) · 838 Bytes
/
.graphqlrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const fs = require("node:fs");
const apiVersion = require("@shopify/shopify-app-remix").LATEST_API_VERSION;
function getConfig() {
const config = {
projects: {
shopifyAdminApi: {
schema: `https://shopify.dev/admin-graphql-direct-proxy/${apiVersion}`,
documents: ["./app/**/*.{graphql,js,ts,jsx,tsx}"],
},
},
};
let extensions = [];
try {
extensions = fs.readdirSync("./extensions");
} catch {
// ignore if no extensions
}
for (const entry of extensions) {
const extensionPath = `./extensions/${entry}`;
const schema = `${extensionPath}/schema.graphql`;
if (!fs.existsSync(schema)) {
continue;
}
config.projects[entry] = {
schema,
documents: [`${extensionPath}/input.graphql`],
};
}
return config;
}
module.exports = getConfig();