graphql-faker icon indicating copy to clipboard operation
graphql-faker copied to clipboard

Stuck at "loading" when running graphql-faker, is there a way to see a more detailed log?

Open lfr opened this issue 3 years ago • 1 comments

My schema passes validation I suppose because I see this: image

But from the browser I never get beyond this point: image

Is there any way for me to check what part of my very large gql file may be causing issues?

lfr avatar Nov 05 '21 18:11 lfr

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

lfr avatar Nov 09 '21 09:11 lfr