Say I have a schema like this:
type Foo {
required link bar -> Bar;
}
type Bar {
required property baz -> bool;
}
How do I, knowing the id of a Foo
object, update a property of a Baz
object it points to?
In other words, how do I update Foo.bar.baz
value knowing Foo
's ID?