16 lines
356 B
TypeScript
16 lines
356 B
TypeScript
|
|
// .graphqlrc.ts or graphql.config.ts
|
|
export default {
|
|
projects: {
|
|
directus: {
|
|
schema: "http://172.16.6.246:8055/graphql?access_token=WkVWFMiFcrjsXRZqsL30Cd4Sboe0DRk-",
|
|
documents: 'src/**/*.{graphql,js,ts,jsx,tsx}',
|
|
extensions: {
|
|
languageService: {
|
|
cacheSchemaFileForLookup: true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
};
|