JetBrains / js-graphql-intellij-plugin

GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the IntelliJ Platform.
https://jimkyndemeyer.github.io/js-graphql-intellij-plugin/
MIT License
879 stars 97 forks source link

Unstable schema discovery in Unity project with Rider IDE #647

Open barryyeee opened 1 year ago

barryyeee commented 1 year ago

Version and Environment Details Rider 2022.3.2 Plugin version: 3.4.0

Describe the bug when first create the .graphqlconfig file and execute it to generate schema.graphql file, GraphQL panel can discover the schema correctly and everything looks good when write queries. Screenshot 2023-02-26 at 7 04 32 PM When close the IDE and reopen it, the previous dicovered schema will be changed to 'Default project-wide schema', and all the types in the schema file will have 'Unknown field "xxx": The parent selection or operation does not resolve to a valid schema type' Screenshot 2023-02-26 at 7 02 27 PM errors in .graphql files Screenshot 2023-02-26 at 7 20 33 PM Screenshot 2023-02-26 at 7 20 42 PM Here is the my configuration file: Screenshot 2023-02-26 at 7 08 20 PM

I'm not sure if it's because of the special project structure of unity project. The file structure looks like this in Rider: Screenshot 2023-02-26 at 7 29 21 PM actually the path is ProjectName/Assets/..., Assets folder is not the project root.

the methods I tried to solve this:

  1. invalidate caches
  2. file association in Rider settings
  3. put .graphconfig and schema.graphql file under ProjectName/Assets/
  4. put all .graphconfig and .graphql files under ProjectName/Assets/GraphQL/

the first method doesn't work, and the last 3 ones only work temporarily: when reopen the IDE or sometimes even switch beteen unity engine and Rider or create a new .graphql file to write a new query, same errors will occur again

vepanimas commented 1 year ago

Hey! As a quick solution please try to click on your .graphqlconfig and choose Tools > Start Index

image
barryyeee commented 1 year ago

Hey! As a quick solution please try to click on your .graphqlconfig and choose Tools > Start Index

image

Hiiii vepanimas, thx for replying. this definitely solves my problem; and for others for reference:

vepanimas commented 1 year ago

I'm glad that it helped! Though let's leave that issue as opened for now, perhaps we will be able to solve it somehow in the future.