Show HN: Rest – Instant RESTful API on Any SQL Database
1–10 of 12 posts
Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#2Edit after RTFM: it apparently does. https://rest-go.com/docs/guides/api#query-json-columns
Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#3Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#4Fully RESTful, yet no mention of hypermedia.
Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#5Fully RESTful, yet no mention of hypermedia.
Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#6Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#7Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#8Generally been a fan of these sorts of models - SQL data is very malleable - and treating the tables as movable from the start really helps move faster as a developer - database migrations become easier as you don't need to do a lot of work with API.
I can see how this would cause problems if you always used this in production after finding a fit for the data model - but for rapid prototyping and development - big fan.
Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#9It would be great if it could support NoSQL databases as well. I use DynamoDb as an example, and I had to write REST APIs myself.
Re: Show HN: Rest – Instant RESTful API on Any SQL Database
#10Pretty cool - wonder how it compares to Postgrest ( https://postgrest.org/ ). Generally been a fan of these sorts of models - SQL data is very malleable - and treating the tables as movable from the start really helps move faster as a developer - database migrations become easier as you don't need to do a lot of work with API. I can see how this would cause problems if you always used this in production after finding…