How can we split a visualization example, a vertical bar graph based on the properties of the document?
I have multiple documents each with some dynamic properties example
Document 1
{
...
"requestBody": {
"name": "adam",
"school": "ABC"
},
...
}
Document 2
{
...
"requestBody": {
"Age": "12",
"Healthy": "yes"
},
...
}
So here I want to create a visualization where I can see one graph with count for each requestBody.* value
further, split the bar on the values against each.
I don't know if it is possible also.