Module Graphql_queries.Import_account

module Import_account_inner : sig ... end
include module type of struct include Import_account_inner end
type t_importAccount = Import_account_inner.t_importAccount = {
public_key : Graphql_lib.Scalars.PublicKey.t;
already_imported : bool;
success : bool;
}
type t = Import_account_inner.t = {
importAccount : t_importAccount;
}
type t_variables = Import_account_inner.t_variables = {
path : string;
password : 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 : path:string -> password: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
include module type of struct include Graphql_lib.Serializing.ExtendQuery(Import_account_inner) end
val make : Import_account_inner.t_variables -> < parse : Yojson.Basic.t -> Import_account_inner.t ; query : Base.string ; variables : Yojson.Basic.t >