Many-to-many relation is not populating?

  async find(params){
    return strapi.query('one').find(params, ['one','two', 'two.three'])
  },

There is a many-to-many relationship between ‘one’ and ‘two’ but for some reason ‘two’ only has a single id (should be an array…) and obviously i am not getting the ‘three’ property.

This works find when its not many-to-many, Whats going on here?

1 Like