<PackageReference Include="Relativity.Identity.SDK" Version="2.6.2" />

QueryResultSlim

public class QueryResultSlim
Represents the results of a QueryRequest returned by the QuerySlimAsync() method.
public int CurrentStartIndex { get; set; }

Gets or sets the starting index for a result item in a query result set.

public List<Field> Fields { get; set; }

Gets or sets a list of fields associated with the results.

public List<int> IDWindow { get; set; }

Gets or sets the Window object containing the IDs of the objects included in the current results set.

public List<RelativityObjectSlim> Objects { get; set; }

Gets a list of objects in read results from the query.

public ObjectType ObjectType { get; set; }

Gets or sets the type of the objects returned from a query.

public List<double?> RankWindow { get; set; }

Gets or sets the set of ranks used to prime the review tool's session.

public Field RelationalField { get; set; }

Gets or sets the related items included in the result set based on this field.

public int ResultCount { get; set; }

Gets or sets the number of result items returned by the current query.

public SampleDetails SampleDetails { get; set; }

Gets or sets the token used to persist an existing sample from one call to the next. The sample includes the metadata from the sampling run.

public int TotalCount { get; set; }

Gets or sets the total number of objects returned by the query.

public QueryResultSlim()