DEV Community

Discussion on: A year of large scale GraphQL - the biggest takeaways

Collapse
 
tahv0 profile image
Tuomas Aho

I made an hybrid API and used both REST and GraphQL at the same time. I make fetch queries and mutations through REST and then use only GraphQL Subscriptions from GraphQL. I could use pure WebSockets too, but I liked to make typeDefs and Apollo's client side libs were easy to use.

Collapse
 
peternycander profile image
Peter Nycander

Interesting! How do you like it? Do you in hindsight wish you did anything different?

Collapse
 
tahv0 profile image
Tuomas Aho

So far decisions I made feels quite good actually.

Thread Thread
 
mathieucaroff profile image
Mathieu CAROFF

7 month later, has there been changes in this approach? Maybe you have some advice?