graphql-faker
graphql-faker copied to clipboard
Stuck at "loading" when running graphql-faker, is there a way to see a more detailed log?
My schema passes validation I suppose because I see this:

But from the browser I never get beyond this point:

Is there any way for me to check what part of my very large gql file may be causing issues?
I fixed my issue, turns out there was a syntax error in the directive declaration, I'll leave this open in case someone wants to convert it to a bug.
directive @hidden on OBJECT, FIELD_DEFINITION # coma should've been reported as an error
directive @hidden on OBJECT | FIELD_DEFINITION # fixing the coma fixes the issue