|
|
|
|
|
by doctor_eval
695 days ago
|
|
This is nonsense. GraphQL queries are simple HTTP requests, with no more complexity than REST. You POST a query string and some JSON and it’s done. If your client makes it harder than that, don’t use it. Here’s my workflow for creating an API with Postgraphile: create view graphql.object as select some,columns from table;
(That’s it)It’s trivial to query it with curl, I’d give an example but I’m afk rn. I’ve been using GraphQL for about the same amount of time as in the article and it solved a bunch of problems for me. It’s so easy to use, and saves so much time - once you spend the time to understand it. |
|