Module Graphql_query.Clear_data

module Raw : sig ... end
type t_delete_blocks_user_commands = {
affected_rows : int;
}
type t_delete_blocks_fee_transfers = {
affected_rows : int;
}
type t_delete_blocks_snark_jobs = {
affected_rows : int;
}
type t_delete_receipt_chain_hashes = {
affected_rows : int;
}
type t_delete_user_commands = {
affected_rows : int;
}
type t_delete_blocks = {
affected_rows : int;
}
type t_delete_public_keys = {
affected_rows : int;
}
type t = {
delete_blocks_user_commands : t_delete_blocks_user_commands option;
delete_blocks_fee_transfers : t_delete_blocks_fee_transfers option;
delete_blocks_snark_jobs : t_delete_blocks_snark_jobs option;
delete_receipt_chain_hashes : t_delete_receipt_chain_hashes option;
delete_user_commands : t_delete_user_commands option;
delete_blocks : t_delete_blocks option;
delete_public_keys : t_delete_public_keys option;
}
type t_variables = unit
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 : unit -> Raw.t_variables
val makeVariables : unit -> t_variables
val makeDefaultVariables : 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