json_api_client
json_api_client copied to clipboard
Build client libraries compliant with specification defined by jsonapi.org
Whilst the relationships work find and are well documented for reading - I am finding that I really do not know what I am doing when trying to use them...
How can i do update without sending id in request? For example, PUT /character Not PUT /character/:id Many thanks. Att, Israel RIbeiro
Hi, Unless I'm mistaking having a model "Link" will cause issues with json_api_client, if you have a this kind of relation for example : Blog has_many Links, and you try...
Is there any solutions to have polymorphic relations in the model? For example: class Photo belongs_to :article belongs_to :event end /articles/:id/photos/:id /event/:id/photos/:id And have such methods for querying photos: Photo.where(article_id:...
For example, we have two models: User ans Post Post belongs_to :user User has_many :posts I want to have custom endpoint in User model that returns his signed posts, if...
- [ ] tutorials - [ ] topic guides - [ ] api reference - [ ] troubleshooting guide
Exposes the JSON API error if it comes as a part of NotFound response - similar to the other error classes. Keeping the backward support for sure.
Includes a rebased version of https://github.com/JsonApiClient/json_api_client/pull/402 Fixes https://github.com/JsonApiClient/json_api_client/issues/407 - Prefix activesupport appraisals, as to not conflict with faraday appraisals - Bump the minimum Faraday requirement to 1.10 to pick up...
Hi, this library currently depends on an older version of `faraday` (1.x) and the now deprecated `faraday_middleware` gem. This makes it difficult to use this library alongside others that also...
Hi everyone. I want to use transactions, how can I do it?