setcola
setcola copied to clipboard
Add support for partition sets defined by nested node properties
Partition sets can currently be defined based on the values of a node property. This change adds support for partition sets defined by nested properties. For example, if we wanted to create a partition based "wand.core":
{
"id": 1,
"name": "Harry Potter",
"height": "5.8",
"house": "Gryffindor",
"wand": {
"core": "phoenix feather",
"wood": "holly",
"length": 11
}
}
I understand this would not be an issue if the data on the node was tidy. However, this change adds support for when it's sadly not the case.
I'm definitely not sure if this is the right approach to the problem, but I'm happy to discuss the topic 😀