We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41240cf commit 33a30eeCopy full SHA for 33a30ee
README.md
@@ -19,11 +19,13 @@ Currently supported:
19
- Update a record via PATCH
20
- Delete a record via DELETE
21
- All errors have now been transformed into the correct JSON API format
22
+- Find related records via GET eg. /posts/1/comments (belongsTo, hasMany, hasOne)
23
+- Find relationships via GET eg. /posts/1/relationships/author (belongsTo, hasMany, hasOne)
24
25
Not yet properly supported:
-- hasMany relations
-- hasOne relations
26
-- belongsTo relations
+- Create relationship via POST (hasMany, belongsTo, hasOne, etc)
27
+- Update relationship via PATCH (hasMany, belongsTo, hasOne, etc)
28
+- Delete relationship via DELETE (hasMany, belongsTo, hasOne, etc)
29
30
## Usage
31
In your loopback project:
0 commit comments