jsonapi
jsonapi copied to clipboard
JSON:API Serializer and Query Handler for Elixir
Updates the requirements on [dialyxir](https://github.com/jeremyjh/dialyxir) to permit the latest version. Changelog Sourced from dialyxir's changelog. Unreleased changes post [1.2.0] [1.2.0] - 2022-07-20 Added "github" formatter. [1.1.0] - 2021-02-18 Added Configuration...
This PR introduces the ability to rename relationships in the JSONAPI View. Other changes in this PR are mostly to rename a few variables local to functions where I felt...
Link objects covered [here](https://jsonapi.org/format/#document-links). Additional controller actions for consistency of use, all logic delegated to serializer. Actions include `create`, `update` and `delete`. Actions covered [here](https://jsonapi.org/format/#document-links).
In the documentation, it seems to be an options parameter that be handled in the paginator  but the code does not handle it. It is never sent to the...
Hi! I see no mention of `lid` (local ids) in the codebase, nor extension support (for atomic operations). I don't know if there is anything else missing from 1.1 because...
@yordis this repo would be another great candidate for the workflow you've put together. Would you be interested in taking care of this one?
I need to flatten some JSON:API data down in another project so I wanted to look at whether I could leverage the `JSONAPI.Utils.DataToParams.process/1` functionality. When I passed in our JSON:API...
This is similar to some thinking reflected here: * https://github.com/jeregrine/jsonapi/issues/193 * https://github.com/jeregrine/jsonapi/issues/174 We have a service boundary in our application but want to represent the JSON:API relationship. Relationships from within...
Hi all! I've noticed that when calling an endpoint, the `UnderscoreParameters` applies the transformation only if the `Content-Type` header of the request is set to `application/vnd.api+json`, which makes sense in...