Open
Description
Index of passwordChangeRequired to enable ElasticSearch queries
Problem
Elasticsearch queries on passwordChangeRequired return no results because the field is not indexed.
Works ✅
{
"match": {
"verified": {
"query": true
}
}
}
No results ❌
{
"match": {
"passwordChangeRequired": {
"query": true
}
}
}
No results ❌
{
"match": {
"passwordChangeRequired": {
"query": false
}
}
}
Solution
Add this field to the index
Alternatives/workarounds
Use the FusionAuth API to fetch each user and check passwordChangeRequired field
Additional context
N/A
How to vote
Please give us a thumbs up or thumbs down as a reaction to help us prioritize this feature. Feel free to comment if you have a particular need or comment on how this feature should work.