System Information
- Strapi Version: Latest
- Operating System: Windows 10
- Database: SQLite 3
- Node Version: v16.16.0
- Yarn Version: 1.22.19
Hi everyone!
I just started using Strapi and I’m loving it, but I’m having quite the conundrum. I’m building a movie database, but I want to have casts.
For example:
A movie has:
- Title
- Year
- Synopsis
- Actor from Actors collection which plays a character (and can play more than one character)
I created a Movie and Actors collection and in the movie one I added a “Movie has many Actors” relation.
However, when I add a Movie, it won’t let an actor more than one time. Plus how would I associate that actor to a character? Is this possible in Strapi?
In JSON it would be something like:
{
"title": "Pulp Fiction",
"year": "1994",
"synopsys": "Synopsis here...",
"cast": {
"actor1": "role",
"actor1": "role",
"actor2": "role"
}
}