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
This is not documented well at all.
Had to resort to writing my own unit tests and checking the output to figure out how to get the right query out of it.
var serializer = new NestSerializer(new ConnectionSettings());
var json = Encoding.UTF8.GetString(serializer.Serialize(query));
Console.WriteLine(json);
I'm trying to model this request:
(similar to http://www.elasticsearch.org/guide/reference/query-dsl/nested-query/)
but am not sure how to create the "match" in the center. It seems only MatchAll() is available. Here's what I have so far:
Do you have any recommendations?
The text was updated successfully, but these errors were encountered: