You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Fieldsedit
Quite often you don’t need to waste bandwidth by returning the complete object graph foreach hit.
Using
.Fields(p=>p.Id, p=>p.Name, p=>p.Followers.First().Name, /** etc */)
You can limit the returned fields for each hit.
An overload taking plain strings also exists.