ra-data-postgrest icon indicating copy to clipboard operation
ra-data-postgrest copied to clipboard

react admin client for postgREST

Results 24 ra-data-postgrest issues
Sort by recently updated
recently updated
newest added

This repo is about querying data and is probably used in many productional apps. When adding PR's with new feature, like I've been doing today, we really need unit tests...

Add support for Postgrest's [Vertical Filtering (Columns)](https://postgrest.org/en/stable/api.html#vertical-filtering-columns). > When certain columns are wide (such as those holding binary data), it is more efficient for the server to withhold them in...

With my recent PR's I noticed code formatting is not enforced by something like prettier in this repo. I tried my best to format my changes to adhere to the...

Postgrest [supports](https://postgrest.org/en/stable/api.html#calling-functions-with-a-single-json-parameter) calling functions with a single JSON parameter by sending the header `Prefer: params=single-object` with your request. This PR allows you to add any kind of header to your...

It should be possible to use useGetList without a sort parameter. The postgrest client wil currently throw an error in such cases. This PR is to make the sort parameter...

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.7.4 to 4.8.2. Release notes Sourced from typescript's releases. TypeScript 4.8 For release notes, check out the release announcement. For the complete list of fixed issues, check...

dependencies

I would like to access to the Supabase tables but don't understand how to access with this plugin. Actually, I get this : ``` const httpClient = (url, options =...

I'm trying to update a single record, and seems like ra-d-pg is performing a PATCH to the endpoint, with the ID / primary key in the payload: PATCH /rest/v1/table?id=eq.1 `{...

Is there any way to use a different schema from public? I didn't see an obvious way to do this; not sure if the limitation is in this package or...

Currently, the create method simply returns what the posted data is (including the id returned by Postgrest). However the Prefer: 'return=representation' is passed in the request which means that Postgrest...