How to create a query filter with FieldName in a child-InfoTable
Hello
I have a think-Property based on a InfoTable. That means i have some rows with a ID, Timestamp and a "value" .
Example:

And here the value:

Now i want to create a Service to filter some rows from this Table ("QueryInfoTablePropertyHistory").
How do i have to create a Query-Filter to select only Rows with positive Values inside the value-Object?
Do i have to use a special JSON-Path?
My current query is not working:
{
"maxItems":20,
"propertyName":"mo_Result",
"query":{
"filters": {
"type": "GT",
"fieldName": "value.rows[0].PedalPushForce",
"value": 0
}
}
}
It seams that my fieldName is the problem.

