How to display element from request in table in Grafana

Hi dear Community!

I am using Grafana with Elasticsearch. I need to display table on Grafana with elements from request and status from this response.
Request looks like :

 "body": [
            {
                "part1": "111",
                "part2": "AAA"
            },
    {
                "part1": "222",
                "part2": "BBB"
            }]

In the first column of table I need to display value of part2 of request where part1 = 111.
How to do it?