You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very useful to be able to chain search queries together in such a way that results from the first query could be used in the second query. For example, let's say I construct the first query to return a list of ids, terms, etc. and then be able to have these results passed to the second query, for example the list of ids could be used to return the documents that matched the ids from the first. Today, this requires intervention from a client within the application code and results in having to make multiple search requests to obtain the final result. Let's say for example I have a separate index for attributes. I can search the index to find a list of attributeIds. I could then use this list of ids in a filter against another index to return items which have this attribute associations.