-
-
Notifications
You must be signed in to change notification settings - Fork 803
Closed
Labels
Description
From what I understand using tokenize with match all tokens currently forces a match of all tokens on the same key. Would it be possible to force a match of all tokens across any keys of a single match?
e.g.
{
title: "Old Man's War",
author: {
firstName: "John",
lastName: "Scalzi"
}
}
searching for Old War will match this record, but Old War John will not.
This would be useful in searches where you want two or more attributes of a record to match.
i.e.
{
jobtitle: 'Lawyer',
country: 'France'
},
{
jobtitle: 'Developer',
country: 'France'
}
There should be a way for a search to return only the first record when search for "lawyer france"
Reactions are currently unavailable