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
For the ValidationVisitor, in graphql-core I had implemented it in a slightly different way. Running each ValidationVisitor as it walks the AST, instead of walking the AST 22 times.
So far, it's been working perfectly. All tests pass without issue, and it looks like running validation runs quite a bit faster too. I didn't do any perf benchmarks comparing them, but the unit tests ran like 30% faster with the new implementation. :O
I could open a PR porting this to graphql-js if interested.