I wanted to loop and scroll thru the data using the scrollid then I've upgraded to NEST 5.5 and trying to remediate this block of code:
scrollGetSearch = client.Raw.ScrollGet(scrollId, x => x
.AddQueryString("scroll", "1m")
.AddQueryString("size", "1000"));
Tried using using .Scroll but can't find the correct arguments for the scroll method:
scrollGetSearch = client.Scroll("1m",scrollId)
Getting the Error
The type arguments for method 'Nest.ElasticClient.Scroll(Nest.Time, string, System.Func,Nest.IScrollRequest>)' cannot be inferred from the usage. Try specifying the type arguments explicitly.