We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d1ed32 commit d4c42f9Copy full SHA for d4c42f9
src/main/com/intellij/lang/jsgraphql/ide/project/indexing/GraphQLIdentifierIndex.java
@@ -118,6 +118,10 @@ private boolean isIntrospectionJsonFile(JsonFile jsonFile) {
118
return ((JsonObject) dataProperty.getValue()).findProperty("__schema") != null;
119
}
120
121
+ final JsonProperty schemaProperty = ((JsonObject) child).findProperty("__schema");
122
+ if(schemaProperty != null) {
123
+ return true;
124
+ }
125
126
127
return false;
@@ -149,7 +153,7 @@ public DataExternalizer<IdentifierKind> getValueExternalizer() {
149
153
150
154
@Override
151
155
public int getVersion() {
152
- return 1;
156
+ return 2;
157
158
159
@NotNull
0 commit comments