Graphql_queries.Unlock_account
module Unlock_account_inner : sig ... end
include module type of struct include Unlock_account_inner end
module Raw = Unlock_account_inner.Raw
type t_unlockAccount = Unlock_account_inner.t_unlockAccount = {
public_key : Graphql_lib.Scalars.PublicKey.t; |
}
type t_variables = Unlock_account_inner.t_variables = {
password : string; |
public_key : Graphql_ppx_runtime.Json.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 :
password:string ->
public_key:Encoders.PublicKey.input ->
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(Unlock_account_inner) end
val make :
Unlock_account_inner.t_variables ->
< parse : Yojson.Basic.t -> Unlock_account_inner.t
; query : Base.string
; variables : Yojson.Basic.t >