-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Description
Hello,upon importing graphQL into Unity,i got error regarding this line
- " await request.SendWebRequest(); " in HttpHandler.cs
It was UnityWebRequestAsyncOperation doesn't have await.So i change the line to make it have like so - "await request.SendWebRequest(); " => " await Task.Run(()=>request.SendWebRequest()); "
And the error stop
After that,i check out the demo,hitting the introspect link on both pokemon and user.Both get stuck on " API is being introspect, please wait"
I even test it on a working project link and the bug remain
What should I do ?
Metadata
Metadata
Assignees
Labels
No labels