ra-jsonapi-client icon indicating copy to clipboard operation
ra-jsonapi-client copied to clipboard

JSON API data provider for react-admin.

Results 8 ra-jsonapi-client issues
Sort by recently updated
recently updated
newest added

Hello world! I extended this library a bit to support relationships both in serialization and deserialization and wanted to share that implementation with y'all. **Deserialization** 1. I grab all the...

Hi, ra-jsonapi-client uses `meta["total"]` for pagination. Some libraries use `meta["count"]` for this. Is it possible to add a fallback to "count"? Or make this configurable? I can create a pull...

Hi @henvo , I have just hit an issue where I wanted to delete multiple records in a list by checking their boxes and hitting Delete. React-admin issues a DELETE_MANY...

enhancement
discussion

The current implementation doesn't handle modifying resources that have relations, because it submits related references in `data.attributes` instead of `data.relationships`. For instance, assigning a post to an author should submit...

enhancement
help wanted

In our pagination we have the 'total-count' for a list nested in a cursor object like ``` { data: {...}, meta: { cursor: { total-count: 1234 } } } ```...

I'd like to get the `meta` jsonapi field into the resultant object.

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. Release notes Sourced from json5's releases. v1.0.2 Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a...

dependencies

Hi @henvo - thanks for creating this library. For background, I am trying to hook react-admin up to a Laravel back end using https://laraveljsonapi.io/. It's going okay so far. I...