You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 13, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
#### develop-wip Fork
2
2
This branch (`develop-wip`) contains features not yet merged into the [upstream develop branch](https://github.com/jasminb/jsonapi-converter). Specifically it contains bug fixes for:
3
3
4
-
* detecting and preventing recursions while resolving relationships ([#28](https://github.com/jasminb/jsonapi-converter/issues/28))
5
-
* correctly parsing `to-many` and `to-one` responses while resolving relationships ([#30](https://github.com/jasminb/jsonapi-converter/issues/30))
6
-
* supports storing relationship urls as string references ([#31](https://github.com/jasminb/jsonapi-converter/issues/31))
4
+
* detecting and preventing recursions while resolving relationships ([#28](https://github.com/jasminb/jsonapi-converter/issues/28))
5
+
* correctly parsing `to-many` and `to-one` responses while resolving relationships ([#30](https://github.com/jasminb/jsonapi-converter/issues/30))
6
+
* supports storing relationship urls as string references ([#31](https://github.com/jasminb/jsonapi-converter/issues/31))
7
7
<pre>
8
8
@Types("node")
9
9
class Node {
@@ -17,20 +17,22 @@ This branch (`develop-wip`) contains features not yet merged into the [upstream
17
17
// ...
18
18
}
19
19
</pre>
20
-
* supports the modeling of JSON-API "links" objects using the new `Link` annotation
20
+
* supports the modeling of JSON-API "links" objects using the new `Links` annotation
21
21
<pre>
22
22
@Types("node")
23
23
class Node {
24
24
25
25
@Id
26
26
String id;
27
27
28
-
@Link
28
+
@Links
29
29
Map<String, ?> links;
30
30
31
31
// ...
32
32
}
33
-
</pre>
33
+
</pre>
34
+
* Collections now expose pagination and meta information via `ResourceList` class
35
+
34
36
The instructions for building this branch are the same as the upstream, and are documented below.
0 commit comments