Casey Link

Results 159 comments of Casey Link

This does look like an obvious bug. But I'm not sure how it is being triggered. Could @taylormathewson provide a test case or even just an example query of how...

What is the hypothetical URL/get request you're making that causes the exception?

Katharsis works well with Spring, particularly spring-data, however it is not designed to work with Spring MVC. You can run a Katharsis api and Spring MVC api side by side...

Of course spring-data[-rest] is not required, it is simply a nice persistence layer to use to back domain objects. If your model objects are hydrated from other services, then they...

Then Katharsis might not be a good fit for you, as Katharsis is designed around exposing JSON API resources using the URL format used in examples in the [json api...

Here is a potential patch. These are the assumptions: 1. Client-side, if a developer wants to ignore a relationship on a resource -> *they do not include the field in...

@remmeier any progress on this? I'm using katharsis client 3.0, with queryparams repositories (because my API uses page[number]) and if my client's resource POJO does not define a relationship, then...

`articles?filter[comments][0][author][id]=85&filter[comments][1][author][id]=1310` @SingingBush To be clear in the above line you are trying to filter by : * Articles whose 0th comment has `author.id` of 85 * Articles whose 1st comment...

I agree in theory with that statement @masterspambot , but what @SingingBush is proposing isn't supported by ember at all, specifically this: ``` articles?filter[comments][CONTAINS][author][id]=85,1310 ```

_Exception Mapper logging_: This is a possibility, however we have many ExceptionMappers, leading to the sprinkling of specialized logging code all over the place. Centralizing it into or near the...