Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Hi, I am the developer of this project. I think the community could use more realistic examples of how to set up a project using GraphQL so I made this. You can use it as a boilerplate to structure your projects. Let me know what you think!


What makes GraphQL a good choice for this problem domain?


You can use GraphQL for basically any Web Service endpoint. It's a way to specify what data you want the endpoint to return without writing custom endpoints for different use cases. Write the schema, define how to retrieve the data then make the queries to the GraphQL Server. It's like a more optimized version of RESTful APIs.


So, how does this not all leak implementation details of your schema to the frontend?

At least with RESTish APIs I can count on a contract and be cheerfully ignorant of any crazy backend changes in how it is being handled.

I'm genuinely curious on this point, since it seems like a big problem.


In a GraphQL schema you can define resolvers which are functions that retrieve/transform the data before returning it. It works quite well so it doesn't matter much what shape the data of your backends are in.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: