<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="10.3.0" />

QueryResult<T>

public class QueryResult<T>
Represents the results of the Query.
public string Message { get; set; }

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

public string QueryToken { get; set; }

Gets or sets the value which indicates whether more results are available than initially specified in the length property, or that result count exceeds the default query limit. You can retrieve the additional folders by using the QuerySubset.

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

Gets or sets the list of individual read results from the called operation.

public bool Success { get; set; }

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

public int TotalCount { get; set; }

Gets or sets the total numer of Artifacts returned by the Query.

public QueryResult()