Hey all, how do I update the field `skills` in `Us...
# orm-help
a
Hey all, how do I update the field
skills
in
User
without having
Skill
orphan nodes afterwards? I don't want to specfiy a relation for every type where
Skill
is used. I basically want to replace the old entries by the new ones.
Copy code
type User {
	skills: [Skill!]!
}

type Skill {
	...
}