Michael "Mike" Ferris
Michael "Mike" Ferris
Great, I updated the title of the issue to better represent the issue.
I tried the following to at least get support for the main project ```js const graphqlConfig = require("./graphql.config"); const defaultSchema = graphqlConfig.projects.default.schema; module.exports = { client: { service: { //...
I didn't know you could have apollo.config.js in multiple folders, I'm gonna try that right now. As for the error, I cloned this repo and launch the extension in debug...
Alright as for multi repos I got it working with multiple apollo.config.js files Now I'm facing another issue where the extension doesn't seem to pick up my local schema files...
Worth mentioning that in 1 project I need to call into multiple different graphql services I initially created apollo.config.mjs files into the various folders hosting the various operations. But those...
In the end the work around to have multiple apollo.config.js files worked. I'd still prefer some way to define everything in 1 file Also would be nice to document how...
> I have a use case where I need to work with two different schemas in the same project, and they need to stay separated. > > Codegen allows me...
I dug a bit into this and the problem is that the code here doesn't exclude "inactive" queries when trying to refetch queries by name https://github.com/apollographql/apollo-client/blob/d914d689abd9a3364cfa9c6bef8617d97df67a1c/src/core/QueryManager.ts#L891-L896 It should likely instead...
I can guarantee there are inactive queries left in that list. See #11914 for a related issue with a repro
We're doing the same thing on our project, but we're using a custom [GraphQL Codegen](https://the-guild.dev/graphql/codegen) plugin to print the merged graph into 1 file. Which is very simply ```js //...