Phrase Query
A phrase query searches for terms occurring at the specified position and offsets. It performs an exact term-match for all the phrase-constituents without using an analyzer.
{
"terms": ["nice", "view"],
"field": "reviews.content"
}
A phrase query is also demonstrated by means of the Java SDK, in Searching from the SDK.