Live data from Hacker News

Show HN: GraphQL lib for real-time apps

github.com

1–10 of 10 posts

Re: Show HN: GraphQL lib for real-time apps

#4
post #3
post #2

What's the benefit of this, over using the websocket layer for Apollo?

Well, to answer you could take a look at their dependencies: https://github.com/tjmehta/primus-graphql/blob/master/packag... https://github.com/prisma/graphql-yoga/blob/master/package.j...

I don't see how this answers the question in a meaningful way.

Re: Show HN: GraphQL lib for real-time apps

#5
post #3
post #2

What's the benefit of this, over using the websocket layer for Apollo?

Well, to answer you could take a look at their dependencies: https://github.com/tjmehta/primus-graphql/blob/master/packag... https://github.com/prisma/graphql-yoga/blob/master/package.j...

That's primus and relay. Question was about Apollo

Re: Show HN: GraphQL lib for real-time apps

#6
post #3

Earlier quoted context omitted.

Well, to answer you could take a look at their dependencies: https://github.com/tjmehta/primus-graphql/blob/master/packag... https://github.com/prisma/graphql-yoga/blob/master/package.j...

That's primus and relay. Question was about Apollo

Sorry. Primus and prisma, not relay

Re: Show HN: GraphQL lib for real-time apps

#10
post #2

What's the benefit of this, over using the websocket layer for Apollo?

Hello Zackify, author here. That’s a great question. I haven’t used Apollo in depth (since I started building this before it’s existance.) But Apollo is an opinionated GraphQL framework that includes the data-transport layer.

Primus-GraphQL is less opinionated and just provides a GraphQL data-transport layer (client and server). Primus-GraphQL also offers a network-layer for Relay (an opinionated GraphQL client framework that works well with React).

Since it is built on top of Primus it allows flexibility with data-protocol layer - from socket.io, socksjs, websockets, or even a custom implementation.

Hope that answers your question. Let me know if you have more :-)