__Operation system__: macOs Mojave (10.14.4)
__IDE name and version__: WebStorm 2019.1 (March 21, 2019)
__Plugin version__: 2.0.0
Parser queries according to schema properly.
Displaying errors (on all fields) about unknown fields then suggesting an object of the exact same name.

Apologies for not being able to share schema or full query, this is a commercial product. The older version plugin didn't have this problem. I recently upgraded the version of the IDE and the plugin was not installed with the upgrade, so this is a fresh install of plugin.
have same problem.
To add some more context - in schema file (which I can show if I go to type definition from searching type in plugin window) it does not recognize any Type apart from Built-In primitives (String, Float etc.)
Any type which is defined in schema explicitly is marked as unknown, even Query, Mutation and Subscription.

one more bit - despite it shows fields as unknown in *.graphql files, autocomplete working well.
Hi.
Thanks for using the plugin.
I think this relates to using a JSON file as the schema path, but I haven't had time to verify this.
As a workaround you should be able to get this sorted by using GraphQL SDL to describe the schema, e.g. by letting the schema discovery process all GraphQL SDL in your project for a local schema, or by using an introspection to fetch your remote schema as described in https://github.com/jimkyndemeyer/graphql-config-examples/tree/master/remote-schema-introspection
I'll update once I know more about the underlying cause and a fix.
@poqeteer @Karabur So my theory that this was based on having a JSON schemaPath didn't hold up.
I realize that you might not be able to share your schemas due to commercial projects, but I'm unable to reproduce using the current information.
A minimal example to reproduce the issue might be required to progress, but before that please try the following:
Thanks,
Jim.
@jimkyndemeyer I appreciate your dilemma... I'll see if I can get it to reproduce in a sample case... Unfortunately, in a bit of a crunch right now so will try to get back to this in a bit.
I was having a problem like this, it was because my schemas was excluded, than I removed the exclusion and it worked well
After updateing to 2.1.0 I have all fields highlighted red and WebStrom offers me to each field to the field with the same name. Autocomplete works fine.

@jimmyn If you clone https://github.com/jimkyndemeyer/graphql-config-examples and open it in webstorm, does it work? I expect this is related to project structure somehow, but I'll need a minimal example to reproduce before a fix can be found. Another thing to check is to use the "Invalidate caches and restart" option in the file menu. The index may have become invalid.
@jimkyndemeyer this is indeed related to project structure. I have a monorepo with the following structure
/frontend
/backend
schema.json
.graphqlconfig
.graphqlconfig
{
"schemaPath": "./schema.json"
}
Everything works well in another project with a flat structure.
@jimkyndemeyer can we make schema discover schemas that are excluded?
@jimmyn The issue might be that the content roots in the project don't include the schema, because the structure doesn't have to be flat. I'm off on vacation and won't be back for a week, so you may need to move/copy your schema and config file into the different directories to get this working until I have time to look at a fix.
@sibelius Not sure how to do that without potentially incurring a huge performance hit, which is why the scope is the "Project scope". You can include specific folders into the project scope, e.g. certain node packages, or you can configure additional "content roots" in the Idea/WebStorm project structure dialog.
I encounter the same issue during removing apollo-codegen, after updating JSON schema generation as follows
apollo-codegen introspect-schema to apollo schema:download
The only difference in generated schemas was one prop that nests schema
This works:
{
"data": {
"__schema": { ...},
}
}
and this doesn't
{
"__schema": { ...}
}
@jimmyn I've tried to setup up a structure that is similar to what you outlined, but I don't have any issues with schema discovery:

Could you please attach a complete zipped project that demonstrates the issue.
I can confirm - my schema generated with "_schema" as top level property and problem arises.
{
"__schema": {
//schema here
}
}
but if I wrap it manually to "data" property - it starts to work fine with no errors, autocomplete works, etc.
{
"data":{
"__schema": {
//schema here
}
}
}
I've made minimal reproduce example.
tmp-gql.zip
if you goto ui/src/test.graphql file, it will show fields as errorneous (but autocomplete still works):

But if you go to shared/schema.json and wrap "__schema" to "data" field - it will start to work fine


@Karabur Thanks for the reproduction. I've implemented a fix for the upcoming 2.1.1 release.
2.1.1 published, pending JetBrains approval.
Most helpful comment
I encounter the same issue during removing apollo-codegen, after updating JSON schema generation as follows
apollo-codegen introspect-schematoapollo schema:downloadThe only difference in generated schemas was one prop that nests schema
This works:
and this doesn't