Class CompileQueryWithPartialEvaluationRequest
public class CompileQueryWithPartialEvaluationRequest
- Inheritance
-
CompileQueryWithPartialEvaluationRequest
- Inherited Members
Properties
AcceptEncoding
Indicates the server should respond with a gzip encoded body. The server will send the compressed response only if its length is above server.encoding.gzip.min_length
value. See the configuration section
public GzipAcceptEncoding? AcceptEncoding { get; set; }
Property Value
ContentEncoding
Indicates that the request body is gzip encoded
public GzipContentEncoding? ContentEncoding { get; set; }
Property Value
Explain
Return query explanation in addition to result.
public Explain? Explain { get; set; }
Property Value
Instrument
Instrument query evaluation and return a superset of performance metrics in addition to result.
public bool? Instrument { get; set; }
Property Value
- bool?
Metrics
Return query performance metrics in addition to result.
public bool? Metrics { get; set; }
Property Value
- bool?
Pretty
If parameter is true
, response will formatted for humans.
public bool? Pretty { get; set; }
Property Value
- bool?
RequestBody
The query, input, and other settings for partial evaluation.
public CompileQueryWithPartialEvaluationRequestBody RequestBody { get; set; }