Module Values.GremlinQueryStatusSource

Captures the status of a Gremlin query (see the Gremlin query status API page).

Sourcetype nonrec t = {
  1. queryId : String_.t option;
    (*

    The ID of the Gremlin query.

    *)
  2. queryString : String_.t option;
    (*

    The query string of the Gremlin query.

    *)
  3. queryEvalStats : QueryEvalStats.t option;
    (*

    The query statistics of the Gremlin query.

    *)
}
Sourceval make : ?queryId:??? -> ?queryString:??? -> ?queryEvalStats:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `Structure of 'a list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t