Show / Hide Table of Contents

Class QueryResultResponse

A response containing a collection of query rows (selected attributes and aggregations) filtered, grouped and sorted by the specified criteria from the query that is run, and the associated summary describing the corresponding query result metadata.

Inheritance
object
QueryResultResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmtracesService.Models
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class QueryResultResponse

Properties

QueryResultMetadata

Declaration
[JsonProperty(PropertyName = "queryResultMetadata")]
public Dictionary<string, object> QueryResultMetadata { get; set; }
Property Value
Type Description
Dictionary<string, object>

A map containing metadata or additional information.

QueryResultMetadataSummary

Declaration
[Required(ErrorMessage = "QueryResultMetadataSummary is required.")]
[JsonProperty(PropertyName = "queryResultMetadataSummary")]
public QueryResultMetadataSummary QueryResultMetadataSummary { get; set; }
Property Value
Type Description
QueryResultMetadataSummary
Remarks

Required

QueryResultRows

Declaration
[Required(ErrorMessage = "QueryResultRows is required.")]
[JsonProperty(PropertyName = "queryResultRows")]
public List<QueryResultRow> QueryResultRows { get; set; }
Property Value
Type Description
List<QueryResultRow>

A collection of objects with each object representing an individual row of the query result set. The total number of objects returned in this collection correspond to the total number of rows returned by the actual query that is run against the queried entity.

Remarks

Required

QueryResultWarnings

Declaration
[JsonProperty(PropertyName = "queryResultWarnings")]
public List<QueryResultWarning> QueryResultWarnings { get; set; }
Property Value
Type Description
List<QueryResultWarning>

A structure that provides warnings, if any, along with the query results.

In this article
Back to top