Elasticsearch - Security
Given this role definition snippet:
What documents and fields will a user with this role see when querying the
{
"indices": [
{
"names": ["books"],
"privileges": ["read"],
"query": { "term": { "genre": "fiction" } },
"field_security": { "grant": ["title", "author"] }
}
]
}What documents and fields will a user with this role see when querying the
books index?