ra-jsonapi-client
ra-jsonapi-client copied to clipboard
JSON API data provider for react-admin.
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...
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...
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...
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...