<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

QueryOptions

public class QueryOptions
Describes the filters and sorts for querying a strongly typed collection.
public string Condition { get; set; }

Gets or sets the filter criteria. It can be a simple, single-field condition or a complex expression made by combining conditions.

public List<Sort> Sorts { get; set; }

Gets or sets the sort order for the results specified as a collection of Sort objects. See SortSort.

public QueryOptions()