postgrest-docs icon indicating copy to clipboard operation
postgrest-docs copied to clipboard

This repo is archived and will be merged into postgrest/postgrest soon.

Results 116 postgrest-docs issues
Sort by recently updated
recently updated
newest added

Related PRs: - [x] https://github.com/PostgREST/postgrest/pull/2424 - [ ] https://github.com/PostgREST/postgrest/pull/2262 - [ ] https://github.com/PostgREST/postgrest/pull/2272 - [x] https://github.com/PostgREST/postgrest/pull/2368 - [x] https://github.com/PostgREST/postgrest/pull/2400

Hello, I once had postgrest running with "SQL user management" as described in https://postgrest.org/en/stable/auth.html#sql-user-management . In the MD5 hashing days I even went one step further, not having a password...

The [resource embedding section](https://postgrest.org/en/latest/api.html#resource-embedding) is getting big and we also need to update it with the changes in: - https://github.com/PostgREST/postgrest/pull/2262 + related https://github.com/supabase/supabase/discussions/7519#discussioncomment-3066327 - https://github.com/PostgREST/postgrest/pull/2272 We should split it to...

references

Not sure what to call https://github.com/PostgREST/postgrest/issues/1094 and https://github.com/PostgREST/postgrest/issues/2364, but I believe those are a security feature.

references

From time to time we get feature request where we suggest to use computed columns instead. Maybe we can extend the docs here a bit with more examples what can...

references

Besides the generated query, we can also include the recommended indexes.

references

Related to https://github.com/PostgREST/postgrest/pull/1564/. We should have a new reference page dedicated to PostGIS. I was thinking this would be an "integration" but that would be more of a "how-to" and...

references

Now that I have (almost) everything mentioned in https://github.com/PostgREST/postgrest/issues/2188, I can use SOAP. Suggestion: I could add a HOW-TO for SOAP to the documentation? By the way, I have noticed...

how-tos

Adds a TimescaleDB integration tutorial. Related to #467.

There's an issue right now with binaries sent using `multipart/form-data` https://github.com/PostgREST/postgrest/issues/922#issuecomment-454085191, but there is an alternative using Javascript, for example with [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API): ```javascript const input = document.getElementById('myFileInput''); fetch('http://localhost:3000/rpc/upload_binary', { method:...