elasticsearch nest support of filters in functionscore function
I am currently trying to implement a "function_score" query in NEST, with functions that are only applied when a filter matches. It doesn't look like FunctionScoreFunctionsDescriptor supports adding a filter yet. Is this functionality going to be added any time soon? Here's a super basic example of what I'd like to be able to implement: Runs an ES query, with basic scores Goes through a list of functions, and adds to it the first score where the filter matches "function_score": { "query": {...}, // base ES query "functions": [ { "filter": {...}, "script_score": {"script": "25"} }, { "filter":