-
Right now Katharsis makes calls to the repository for Serializing a Resource to JSON API document.
This complicates the code and should not be the case since we should have access to all the data wh…
-
In v2.8.2 of Katharsis, in order for the `ReflectionsServiceDiscovery` class to pick up repository classes, it requires that the class has a public no-arg constructor. I'd like to a) understand why su…
-
In katharsis validation module, when a jpa entity fails in validation, the [ConstraintViolationExceptionMapper.java](https://github.com/katharsis-project/katharsis-framework/blob/katharsis-build-3.0.…
-
We need to update the API response to align to the jsonapi.org specification. See: jsonapi.org/format/
Example:
```
{
"type": "collectionobject",
"id": "1",
"attributes": {
"title": "Rails…
-
As discussed in gitter with @remmeier we need a more incremental path from `QueryParams` to `QuerySpec`.
It should be possible to use `QueryParams` and `QuerySpec` repositories side by side in the …
-
I am migrating one of our projects from Katharsis to Crnk and am very pleased that Prometheus metrics can finally grouped by endpoint as addressed in https://github.com/crnk-project/crnk-framework/pul…
-
As a maintainer of [a JSON API adapter](https://github.com/django-json-api/django-rest-framework-json-api) it would be helpful to us to have an external test suite that ensures we are in compliance wi…
jerel updated
8 years ago
-
I've got a `@JsonApiFindAll` endpoint on a `findAll(QuerySpec requestParams)` method which is working great for most of my needs, generally the object I am querying has single fields that I am searchi…
-
```java
@JsonApiResource
class Task {
@JsonApiId
String id;
@JsonApiToOne
Project project;
}
@JsonApiResource
class Project {
@JsonApiId
String id;
@JsonApiToMany
…
-
It should be possible flexibly define the parameter names used by katharsis for pagination.
As per the JSONAPI spec:
> Note: JSON API is agnostic about the pagination strategy used by a server. …