fostgres
fostgres copied to clipboard
RESTful APIs for Postgres databases
This completes the PATCH support by implementing the remaining parts so it works consistently for both object and CSJ requests.
At the moment the `fostgres.sql` view does two things: 1. It pattern matches the URL 2. It executes SQL with numbered parameters (`$1` etc.) based on the matched pattern We...
Right now it seems that any column mentioned in the PUT configuration of the `fostgres.sql` view is required in the JSON data submitted even if the column is nullable in...
`fostgres.sql` view should be able to set the fallback view when no path is matched. Example ``` { "view": "fostgres.sql", "configuration": { "sql": [{ "return": "object", "path": [1], "GET": "SELECT...
This will allow the user to configure a fallback view for use when none of the path matches are selected.
Explain how to register, the callback parameters and return type...
``` Parsing error Data: { "message" : "Could not parse FG script", "value" : " \n" } ```
It's quite annoying that CSJ used for tests must always be loaded from an external file. These are harder to write and it's then harder to deal with them. Also...
I would like to be able to PUT multiple CSJ in one time, separate by blank line to make sure that all of data that I want to PUT is...