Hi all,
I am trying to refine data access to a Role based on regex within Document Level Security. Here a query example:
{
“bool”: {
“must”: {
“match”: {
“field_name”: “name_*”
}
}
}
}
This regex should match all field_name equals to “name_1”, “name_2” etc…
I am worried that it’s not possible to do it on DSL, but i want to be sure that i did not something wrong ?
If not, do you have any idea how to refine access to only these data ?
Thanks a lot,
Julien