When apollo.config.js is thus:
module.exports = {
client: {
name: 'graphitti schema',
service: 'graphitti-schema',
}
};
and .env set appropriately to point to Apollo Engine service, VS Code shows both autocomplete and metrics working in src/see.graphql file:

But when apollo.config.js is updated to include files in other directories:
module.exports = {
client: {
name: 'graphitti schema',
service: 'graphitti-schema',
includes: [__dirname+ '/client/**/*.js', './client/**/*.graphql', './src/**/*.graphql']
}
};
VS Code continues to show metrics for the included js files, not does not show autocomplete or type information on hover:

What am I missing?
When
apollo.config.jsis thus:and

.envset appropriately to point to Apollo Engine service, VS Code shows both autocomplete and metrics working insrc/see.graphqlfile:But when
apollo.config.jsis updated to include files in other directories:VS Code continues to show metrics for the included js files, not does not show autocomplete or type information on hover:
What am I missing?