When you trigger `model.saveAll({ relation: ['foo'] })` and relations `foo.bar` is a store: ``` { foo: { bar: [1, 2], } } ``` `bar` is still changed unless you `model.saveAll({ relation: ['foo.bar'] })`
When you trigger
model.saveAll({ relation: ['foo'] })and relations
foo.baris a store:baris still changed unless youmodel.saveAll({ relation: ['foo.bar'] })