Graphql_queries.Pooled_user_commands
module Pooled_user_commands_inner : sig ... end
include module type of struct include Pooled_user_commands_inner end
module Raw = Pooled_user_commands_inner.Raw
type t_pooledUserCommands = Pooled_user_commands_inner.t_pooledUserCommands = {
memo : string; |
fee : Graphql_lib.Scalars.Fee.t; |
amount : Graphql_lib.Scalars.Amount.t; |
to_ : Graphql_lib.Scalars.PublicKey.t; |
from : Graphql_lib.Scalars.PublicKey.t; |
nonce : int; |
isDelegation : bool; |
id : Graphql_lib.Scalars.TransactionId.t; |
}
type t_variables = Pooled_user_commands_inner.t_variables = {
public_key : Graphql_ppx_runtime.Json.t option; |
}
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 : ?public_key:Encoders.PublicKey.input -> 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
include module type of struct include Graphql_lib.Serializing.ExtendQuery(Pooled_user_commands_inner) end
val make :
Pooled_user_commands_inner.t_variables ->
< parse : Yojson.Basic.t -> Pooled_user_commands_inner.t
; query : Base.string
; variables : Yojson.Basic.t >