graphql

2019-09-02T16:08:30.010600Z

Hey guys , what are the current options for checking schema coverage when using lacinia

2019-09-02T16:10:55.011Z

Looking for a clojure version of something like this https://medium.com/the-guild/graphql-inspector-481c1a5ef616

hlship 2019-09-03T16:35:10.011600Z

We log (a bit indirectly) what fields are used in queries into our system; we then have a tool that can identify which fields are used and which are not. We'll eventually use that to deprecate and finally remove unused fields. That's a nice ability to have, and not something you can effectively do in a REST world where you have no idea what data is actually needed by clients because one-size-ill-fits-all.