Closed acao closed 2 years ago
schema: "src/schema/**/*.ts" extensions: languageService: useSchemaFileDefinitions: true
should lead to all files in src/schema loading with SDL definition entries
src/schema
The fix involves using something like fast-glob to detect graphql config glob paths and parse and cache the files in our custom implementation. the implementation only needs to happen in one place, too!
fast-glob
It would be great to get this fixed! Open for contribution?
fixed! let me know how it is and if it needs re-opened
Actual Behavior
Expected Behaviour
should lead to all files in
src/schema
loading with SDL definition entriesSteps to Reproduce the Problem Or Description
Specifications
Fix
The fix involves using something like
fast-glob
to detect graphql config glob paths and parse and cache the files in our custom implementation. the implementation only needs to happen in one place, too!