Code Monkey home page Code Monkey logo

Comments (2)

rtablada avatar rtablada commented on June 12, 2024

This is likely because of the breaking change with the way that relation options work. This has now been updated in the docs.

Change your relation to:

return this.hasMany('App/Http/JsonApiViews/Contact', {
  included: true,
  excludeRelation: 'user'
});

And similar for your other relation

from adonis-jsonapi.

Eusse avatar Eusse commented on June 12, 2024

This is my new setup for JsonApiViews/User.js

const JsonApiView = require('adonis-jsonapi/src/JsonApiView')
class User extends JsonApiView {
  get attributes() {
    return ['first-name', 'last-name', 'email'];
  }
  contacts() {
    return this.hasMany('App/Http/JsonApiViews/Contact', {
      included: true,
      excludeRelation: 'user'
    });
  }
}
module.exports = User

for my JsonApiViews/Contact.js

const JsonApiView = require('adonis-jsonapi/src/JsonApiView')
class Contact extends JsonApiView {
  get attributes() {
    return ['first-name', 'last-name', 'email', 'phone'];
  }
  user() {
    return this.belongsTo('App/Http/JsonApiViews/User', {
      included: true,
      excludeRelation: 'contact'
    });
  }
}
module.exports = Contact

and finally, the index method in ContactController.js

* index (request, response) {
    const user = yield User.find(1)
    const contacts = yield user.contacts().fetch()
    response.jsonApi('Contact', contacts)
  }

I no longer get the error, but the relationship is not the response either, it looks like this

{
    "data": [
        {
            "type": "contacts",
            "id": "4",
            "attributes": {
                "first-name": "Test",
                "last-name": "dude1",
                "email": "[email protected]",
                "phone": "1234567890"
            }
        },
        {
            "type": "contacts",
            "id": "5",
            "attributes": {
                "first-name": "Another test",
                "last-name": "dude2",
                "email": "[email protected]",
                "phone": "12345689"
            }
        }
    ]
}

What else am i missing? I'm currently on version 0.5.3

from adonis-jsonapi.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.