Recently, I started working with Postgraphile to implement an API for the use of the react app I'm currently working on.
As my app grows I find myself continuously writing new views with smart comments to create more complex queries to the database. Some of those include sub-queries, unions and coalesce statements. As for now there are around 20 to 30 views and it gets bigger harder to maintain.
Is there any alternative that still allows me to use the flexibility and power of Postgraphile without the need of continuously writing more and more views.
Thanks :)