-
Correct me if I'm wrong, but when doing `PUT` you're supposed to supply the full new resource representation that's going to replace the old one?
What restify actually is doing is applying the delta…
-
Is there a reason why only the "replace" operation of RFC 6902 was implemented in Fortune? The lack of add is preventing many-to-many operations from being possible.
If I have two users and one grou…
-
Issue #100 (and the discussion on #99 also) reveal an unresolved question in the spec, around how to properly form JSON Patch operations that remove an item from a to-many relationship. Currently, the…
-
Hi,
Thank you for your library. It works fine on my REST API.
The problem is that clients have to enter in a calculation process to generate these pachs and it becomes sometimes weird.
I saw the [RF…
-
The new value hydrator changes have made it conformant with our behavior for PUT elsewhere in the API. What it doesn't yet account for is what to do when the request is a PATCH.
PATCH in the API norm…
-
The JSON pointer implementation in 2.3 is a big part of an [RFC 6902](http://tools.ietf.org/html/rfc6902) patch implementation. I was hoping maybe to also see `add(JsonPointer, JsonNode)` and `remove…
-
I was assuming from the README that I should be able to use a diff generated from immutablediff with immpatch, so I tried the following simple test and it gave me an error.
Is immpatch supposed to be…
-
While I agree that batch operations to link and unlink members in an album could be useful, I still think the full set of CRUD operations should be available for each member of an album, i.e. there sh…
-
What should be returned when an empty collection is queried?
a hash with an empty array?
example 1
```
GET /photos
HTTP/1.1 200 OK
Content-Type: application/json
{
"photos": []
}
```
example 2…
-
Hi, currently I am using Jackson 2.4 to implement a library that meets RFC 6902 (JSON PATCH). For this library I need to use `JsonPointer`. The problem that I have found is that sometimes what I need …