You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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'
errors in .graphql files
Here is the my configuration file:
I'm not sure if it's because of the special project structure of unity project. The file structure looks like this in Rider:
actually the path is ProjectName/Assets/..., Assets folder is not the project root.
the methods I tried to solve this:
invalidate caches
file association in Rider settings
put .graphconfig and schema.graphql file under ProjectName/Assets/
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
The text was updated successfully, but these errors were encountered:
Hey! As a quick solution please try to click on your .graphqlconfig and choose Tools > Start Index
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)
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.
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'
errors in .graphql files
Here is the my configuration file:
I'm not sure if it's because of the special project structure of unity project. The file structure looks like this in Rider:
actually the path is ProjectName/Assets/..., Assets folder is not the project root.
the methods I tried to solve this:
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
The text was updated successfully, but these errors were encountered: