Package version:

Interface QueryCompilationResult

The result of the query compilation request.

interface QueryCompilationResult {
    errors?: QueryCompilationError[];
    functions?: string[];
    inputs?: string[];
    outputs?: string[];
    warnings?: string[];
}

Properties

Error messages produced by the compiler. NOTE: This property will not be serialized. It can only be populated by the server.

functions?: string[]

All function names used by the query. NOTE: This property will not be serialized. It can only be populated by the server.

inputs?: string[]

All input names used by the query. NOTE: This property will not be serialized. It can only be populated by the server.

outputs?: string[]

All output names used by the query. NOTE: This property will not be serialized. It can only be populated by the server.

warnings?: string[]

Warning messages produced by the compiler. NOTE: This property will not be serialized. It can only be populated by the server.

Generated using TypeDoc