Hello, I have a following three document
1. `{field: "one two three"}`
2. `{field: "x one two three"}`
3. `{field: "x y one two three"}`
Question: Can I query term tow with it's position range?
Example: {match: "two", position: [4, 6]} returns 1 & 2 because term "two" position 4 and 6.
#3 is not returned because position of "two" is 8