Right now, if you want to provide a custom strategy for a field which is a few layers deep in the model, you have to explicitly write each level like
documents(Foo, sub_bar=documents(Bar, sub_baz=documents(Baz, baz=strategies.just(42))))
It would be nice if you could instead write
documents(Foo, sub_bar__sub_baz__baz=strategies.just(42))
more like a MongoEngine query.
Right now, if you want to provide a custom strategy for a field which is a few layers deep in the model, you have to explicitly write each level like
It would be nice if you could instead write
more like a MongoEngine query.