Hi,
say I have a type that is modeled in the following way:
document {
id: x,
nested_object: [
{objects}, {objects}...
] }
I am looking for a way to execute a diff query between two documents of this type, so that the diff will return all the inner nested objects that exist in one of the documents, but do not exist in the other one..
is it possible ?
if so - do I have a way for controlling the equals function for comparing two nested documents?