Module User_commands.Query_participants

module Raw : sig ... end
type t_user_commands_receiver = {
id : int;
value : Serializing.Public_key_s.t;
}
type t_user_commands_sender = {
id : int;
value : Serializing.Public_key_s.t;
}
type t_user_commands = {
receiver : t_user_commands_receiver;
sender : t_user_commands_sender;
}
type t = {
user_commands : t_user_commands array;
}
type t_variables = {
hashes : string array;
}
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 : hashes:string array -> 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