I imported some documents from mongodb into elastic search.
All documents have a date field and several string fields.
I would like to query elastic search exactly like I do in mongodb
ie.
find all docs that match field1="field1value" and field2="field2value"
and date in range
Do I need to prevent elastic search from tokenizing the fields?
(Sorry I am an elastic search newbie)