What is the recommended graphql client to use for ...
# orm-help
s
What is the recommended graphql client to use for a vue.js app and including subscriptions? Right now I am doing the graphql queries simply with ‘fetch’ and it works great. Is there an example how to support subscriptions from a client perspective and possibly without a library or with minimal library support?
j
We are using apollo in react. It's working well for us. Theres also a vue version of apollo. Combined with graphql-codegen + typescript, it makes for nice dev experience
h
Apollo Client is the most mature library for Vue. The core client is same among all frameworks just the bindings are specific to the framework
s
thx, I’ll have a test run with apollo client now 🙂