Class DMSQueryResult<T>
Result of an iteration of a DMS query
Inherited Members
Namespace: Cognite.Extensions.DataModels
Assembly: Cognite.Extensions.dll
Syntax
public class DMSQueryResult<T>
Type Parameters
Name | Description |
---|---|
T | Type of node or edge properties |
Properties
| Edit this page View SourceCursor
Cursor for pagination.
Declaration
public QueryCursor? Cursor { get; }
Property Value
Type | Description |
---|---|
QueryCursor |
Items
Items returned by this iteration of the query, grouped by subquery. This may be empty, if there was no valid query to be made.
Declaration
public Dictionary<string, IEnumerable<BaseInstance<T>>> Items { get; }
Property Value
Type | Description |
---|---|
Dictionary<string, IEnumerable<BaseInstance<T>>> |