Here below the defined spec file, I want to add more values in the "path": {$match}function. I mean I need to define more than one path in this syntax is that possible? i.e.: Test/dev , Test/qa , Test/prod etc..
"files": [
{
"aql": {
"items.find": {
"repo": "Testing",
"path": {"$match":"Test/dev"},
"name": {"$match":"*"},
"type": "file",
"$or": [
{
"$and": [
{
"created": { "$before":"90d" }
}
]
}
]
}
}
}
]
}