angular-jsonapi
angular-jsonapi copied to clipboard
Simple and lightweight, yet powerful ORM for your frontend that seamlessly integrates with your JsonAPI server.
```javascript const admterritorySchema = { type: 'admterritory', id: 'string', attributes: { // ... }, relationships: { population: { included: true, type: 'hasMany', model: 'population', reflection: false } } }; ```...
If I request on api URL http://localhost:3000/jobs/13/relationships/applicants in postman i get the required data. But I do not the way to get it in my **angular** (front-end) app. Consider a...
Hey guys. I'm having a problem with the next code: ``` resource.all(params).promise.then(resolve => { $log.info(resolve); // the result is undefined }); ``` This return me the message: 'undefined'. someone has...
We are very grateful with @jakubrohleder, we use this library for 6 months. But, today, it's time to move on. Like you know, angular-jsonapi is the best on the angular-ecosystem...
I need a way to tell the resource API to deserialize server sent dates as strings (`"2016-05-13"`) into javascript dates so angular-material datepicker doesn't wine about model being an string....
Simply including the source file (min or not) doesn't work for me, it looks like it's utilizing a global var that's not defined: ``` (function() { 'use strict'; /* global...
Sometimes, it's necessary to send additional data on a relationship (a field's name, etc...) in order to be processed by JSON API backend. The spec says META property is optional.
I noticed that some files were causing issues in `/dist-demo/` and realized that the .codeclimate.yml wasn't recursively blocking dist, dist-demo, and demo. I took a minute to update it, and...
It looks as though what is installed via Bower includes way more than is needed to use the module. It would be nice not to have all of the source,...
Q&A
Topic for questions about the package usage that does not require a new issue. Feel free to ask about anything!