New

The executive guide to generative AI

Read more
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

Or Filter

edit

See Or Filter

FilterBuilder filter = orFilter(
        termFilter("name.second", "banon"), 
        termFilter("name.nick", "kimchy")   
    );

filters

Note that you can cache the result using OrFilterBuilder#cache(boolean) method. See Caching.

Was this helpful?
Feedback