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

DataResult

public class DataResult
public Guid[] ArtifactTypeGuids { get; set; }

Guids for the artifact type of the query result artifacts. Some artifact types will not have a GUID.

public int ArtifactTypeId { get; set; }

Id of artifact type of the query result artifacts.

public string ArtifactTypeName { get; set; }

Name of artifact type of the query result artifacts.

public int CurrentStartIndex { get; set; }

Start index of the results relative to the entire query result set.

public QueryDataItemResult[] DataResults { get; set; }

Query result artifacts.

public FieldRef Includes { get; set; }

Related items are included in the result set based on this field.

public string NextPage { get; set; }

Generated url of that can be used to retrieve the next page of query results based on the provided start and pageSize parameters of the query execution.

public string PreviousPage { get; set; }

Generated url of that can be used to retrieve the previous page of query results based on the provided start and pageSize parameters of the query execution.

public string QueryToken { get; set; }

Token that can be used to lookup a subset of the cached query.

public double?[] RankWindow { get; set; }

Retrieves the set of Ranks used to prime the review tool's session.

public int ResultCount { get; set; }

Count of return artifacts returned for this call.

public SampleDetails Sample { get; set; }

Token that can be used to persist an existing sample from one call to the next.

public int TotalResultCount { get; set; }

Total count of return artifacts in the entire query (Including artifacts that were not returned in this call due to requeseted page size being smaller than TotalResultCount).

public int[] Window { get; set; }

Retrieves the set of IDs used to prime the review tool's session.

public int WorkspaceId { get; set; }

Id of the workspace which contains the query result artifacts. If artifacts belong to the admin level, this value will equal -1.

public DataResult()