Module Blocks.Get_stale_block_confirmations

module Raw : sig ... end
type t_get_stale_block_confirmations_state_hash = {
value : Serializing.State_hash.t;
}
type t_get_stale_block_confirmations = {
state_hash : t_get_stale_block_confirmations_state_hash;
status : int;
}
type t = {
get_stale_block_confirmations : t_get_stale_block_confirmations array;
}
type t_variables = {
parent_hash : string;
}
val query : string

The GraphQL query

val parse : Raw.t -> t

Parse the JSON-compatible GraphQL data to ReasonML data types

val serialize : t -> Raw.t

Serialize the ReasonML GraphQL data that was parsed using the parse function back to the original JSON compatible data

val serializeVariables : t_variables -> Raw.t_variables
val makeVariables : parent_hash:string -> unit -> t_variables
val unsafe_fromJson : Graphql_ppx_runtime.Json.t -> Raw.t
val toJson : Raw.t -> Graphql_ppx_runtime.Json.t
val variablesToJson : Raw.t_variables -> Graphql_ppx_runtime.Json.t