When I configure my apollo.config.js with a localSchemaFile and select "go to definition" on a query field, I get the following error:

I would expect it to navigate to the definition of the field in the local schema file.
My config:
module.exports = {
client: {
service: {
name: 'local',
localSchemaFile: './app/graphql/schema.graphql',
},
includes: ['frontend/javascripts/**/*.{ts,tsx,js,jsx,graphql}'],
},
};
When I configure my

apollo.config.jswith alocalSchemaFileand select "go to definition" on a query field, I get the following error:I would expect it to navigate to the definition of the field in the local schema file.
My config: