Moved from GitHub tutorial/122
Posted by zbioe:
Case
taking the tour I came across with a situation in exercise blocksvars/6/
i needed to complete exercise, but i forgot the existence of predicate actor.film
i used moredata/2
as reference and it don’t show the predicate, so i can’t complete exercise and need see the spoiler to remember existence of predicate actor.film
Changes
We currently have:
type Person {
name: string
director.film: [Movie]
}
Add the follow line:
actor.film: [Performance]
Change for:
type Person {
name: string
director.film: [Movie]
actor.film: [Performance]
}
this could be a improvement