js-graphql-intellij-plugin icon indicating copy to clipboard operation
js-graphql-intellij-plugin copied to clipboard

Unstable schema discovery in Unity project with Rider IDE

Open barryyeee opened this issue 1 year ago • 3 comments

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

barryyeee avatar Feb 27 '23 03:02 barryyeee

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

image

vepanimas avatar Feb 27 '23 11:02 vepanimas

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:

  • click on .graphqlconfig and choose Tools > Start Index
  • if there's still schema error: "A schema should have a 'query' operation defined", do the same thing with schema.graphql file (click on the generated schema.graphql file and choose Tools > Start Index)

barryyeee avatar Feb 27 '23 20:02 barryyeee

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.

vepanimas avatar Feb 28 '23 14:02 vepanimas