Has Many Relationship don't trigger the route

Expected behavior

I expect to see in my logs, the route /organers/:organizer_id/relationships/events being called

collection("organizers", {
  actions: [],
  fields: [
    {
      field: "events",
      type: ["String"],
      reference: "organizers._id",
    },
    {
      field: "leads",
      type: ["String"],
      reference: "leads._id",
    },
  ],
  segments: [],
});

Actual behavior

Interface shows no related fields and in console log, the route is not called

    "body-parser": "1.19.0",
    "chalk": "~1.1.3",
    "cookie-parser": "1.4.4",
    "cors": "2.8.5",
    "debug": "~4.0.1",
    "dotenv": "~6.1.0",
    "express": "~4.17.1",
    "express-jwt": "5.3.1",
    "forest-express-mongoose": "^7.9.2",
    "mongoose": "^5.13.2",
    "morgan": "1.9.1",
    "require-all": "^3.0.0"

Hi @Robin_Herzog,

Welcome to the Forest.

Can you please describe in a more detailed way your model?
In your message, I understand you have three entities: organizers, events and leads.

How are they materialized in your side? do you have a database table for each of these models?
If so, the project (with models) with the relationships should be generated automatically.

For more advanced configuration, this link may help: https://docs.forestadmin.com/documentation/reference-guide/relationships/create-a-smart-relationship#creating-a-hasmany-smart-relationship

Regards