This question already has answers here:
Closed 5 years ago.
I'm doing this query 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 this will return 10 Hits by default.
Is there a way I can get ALL results, WITHOUT indicating .Size(value) or .Take(value)?
Thanks in advance!