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

Query

public class Query
The output of a call to the Query method.
public string Condition { get; set; }

Gets or sets the search critera. This can be a simple, single-field condition or a more complex criteria expression by combining conditions together.

public int? ExecutingSavedSearchId { get; set; }

ID of the currently executing saved search.

public bool? IncludeIdWindow { get; set; }

Include ID Window

public string QueryHint { get; set; }

Gets or sets the QueryHint of the currently executing search. It is used to optimize the view.

public string RankSortOrder { get; set; }

Sorting direction ASC or DESC of the Rank column

public FieldRef RelationalField { get; set; }

Field used to include related items in query result. See FieldRefFieldRef.

public string RowCondition { get; set; }

Gets or sets the row condition criteria. This can be a simple, single-field condition or a more complex criteria expression by combining conditions together. This criteria will limit the result set returned after applying all other conditions and including the relational field. Currently, this property will only work for the Pivot and Object Query APIs.

public SampleParameters SampleParameters { get; set; }

Sample Parameters

Gets or sets the Search Provider search condition. See SearchProviderConditionSearchProviderCondition

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

This list of Sort objects indicates how the results should be sorted. See SortSort.

public Query(string condition, List<Sort> sorts)

Initializes a new instance of the Query class.

public Query(string condition, List<Sort> sorts, FieldRef relationalField)

Initializes a new instance of the Query class.

public Query()

Initializes a new instance of the Query class.