I am making this request in NEST
var result = elasticClient.Search<SearchItemClass>( s=> s.Index("indexName") .Type("typeName") .Query(q => q.ConstantScore(score => score.Filter(f => f.Term("fieldName", "term")))) );
And by default 10 hits will be returned.
Is there a way to get ALL the results WITHOUT an indication. Size (value) or .Take (value)?
Thanks in advance!
source share