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
Thank you @queenvictoria. This is an awesome project which I used in the past. However certain unaddressed issues (like this one or that one) and the stalled development caused me to move on from jsonapi-server.
For smaller projects I use my own small scoped jsonapi-server-mini. For setting up a jsonapi endpoint on node using express and mongodb, it'll just take one file per route/model. I have yet to see anything simpler.
For more complex projects fortune.js seems interesting.
When requesting a resource, we can include it's relationships for client-side model postprocessing by using the querystring
?include=
:However, if we want to load 60 tokens for a single resource, the application breaks because jsonapi-server hard-limits the included items to 50.
I tried doing this:
But I'm still only getting 50.
I reckon this should be:
jsonApi.setConfig()
, andpage[limit]
(or some other include-only parameter)The text was updated successfully, but these errors were encountered: