Live data from Hacker News

Ask HN: For a greenfield public API which to use: REST, GraphQL, other? Why?

news.ycombinator.com

1–6 of 6 posts

Re: Ask HN: For a greenfield public API which to use: REST, GraphQL, other? Why?

#2
Depends on your use case.

GraphQL is designed for the use case of a client talking over a thin long pipe that needs to talk to many APIs. As in, it's designed for API clients that are smartphones.

And there are patent licensing issues with GraphQL.

Re: Ask HN: For a greenfield public API which to use: REST, GraphQL, other? Why?

#6
You can use Introspected REST (https://introspected.rest) that allows you to fine-tune and balance between REST and GraphQL. No available libraries at the moment that can help you though so this could be a problem for your use case ;)