Ashni Mehta
07/03/2023, 3:39 PMCLOVIS
07/03/2023, 4:05 PM/
) for accessing deep fields planned? I understand it's not a feature at the moment. If it's not planned, what is the way to make an edit to a deep field (e.g. an update to { "a.b.c": "foo" }
)
• I don't see any mentions of aggregations in the blog post, is there any specific information we might be interested in?CLOVIS
07/03/2023, 4:05 PMPiotr Krzemiński
07/04/2023, 11:25 AMPiotr Krzemiński
07/04/2023, 12:03 PMMarcin Wisniowski
07/05/2023, 3:28 PMAshni Mehta
07/07/2023, 4:08 PMCLOVIS
07/07/2023, 4:13 PM@Serializable
class A {
val a: Int,
}
@Serializable
class B {
val b: A,
}
collection.findOne(
B::b / A::a gt 1,
)
I have only seen examples in the official driver's documentation where fields are used directly as-in, without nesting. Sorry if I missed any.Ashni Mehta
07/10/2023, 1:50 PMFilters
api eg: <http://Filters.gt|Filters.gt>("${B::b.name}.${A::a.name}", 1)