<PackageReference Include="Relativity.Services.DataContracts.SDK" Version="13.6.2" />

QueryResultSet<T>

public class QueryResultSet<T>
The output of a call to the Query method.
public string Message { get; set; }

Gets a message which contains the error information if the read operation failed.

public string QueryToken { get; set; }

When this property contains a value, it indicates that the Search returned more results than the maximum configured. Additional results can be returned by calling QuerySubset.

public List<Result<T>> Results { get; set; }

The list of individual read results from the called operation.

public bool Success { get; set; }

Gets a value indicating whether the overall set of read operations was a success.

public int TotalCount { get; set; }

The total number of Artifacts returned by the Query

public QueryResultSet()

QueryResultSet Constructor.