Mina_graphql
module Ledger = Mina_ledger.Ledger
module Schema : sig ... end
module Option : sig ... end
Convert a GraphQL constant to the equivalent json representation. We can't coerce this directly because of the presence of the `Enum
constructor, so we have to recurse over the structure replacing all of the `Enum
s with `String
s.
val result_field_no_inputs :
resolve:( 'a Graphql_async.Schema.resolve_info -> 'b -> 'c ) ->
?doc:string ->
?deprecated:Graphql_async.Schema.deprecated ->
string ->
typ:( 'a, 'd ) Graphql_async.Schema.typ ->
args:
( 'e,
( 'd, Graphql_async.Schema.field_error ) Stdlib.result
Graphql_async.Schema.Io.t,
'f Async.Deferred.t,
'g,
'h )
Schema.Arg.args ->
( 'a, 'i ) Graphql_async.Schema.field
val result_field :
resolve:( 'a Graphql_async.Schema.resolve_info -> 'b -> 'c -> 'd ) ->
?doc:string ->
?deprecated:Graphql_async.Schema.deprecated ->
string ->
typ:( 'a, 'e ) Graphql_async.Schema.typ ->
args:
( 'f,
( 'e, Graphql_async.Schema.field_error ) Stdlib.result
Graphql_async.Schema.Io.t,
'g ->
'h Async.Deferred.t,
'i,
'j )
Schema.Arg.args ->
( 'a, 'k ) Graphql_async.Schema.field
val result_field2 :
resolve:( 'a Graphql_async.Schema.resolve_info -> 'b -> 'c -> 'd -> 'e ) ->
?doc:string ->
?deprecated:Graphql_async.Schema.deprecated ->
string ->
typ:( 'a, 'f ) Graphql_async.Schema.typ ->
args:
( 'g,
( 'f, Graphql_async.Schema.field_error ) Stdlib.result
Graphql_async.Schema.Io.t,
'h ->
'i ->
'j Async.Deferred.t,
'k,
'l )
Schema.Arg.args ->
( 'a, 'm ) Graphql_async.Schema.field
module Doc : sig ... end
module Reflection : sig ... end
val get_ledger_and_breadcrumb :
Mina_lib.t ->
(Staged_ledger.Ledger.t * Transition_frontier.Breadcrumb.t) option
module Types : sig ... end
module Subscriptions : sig ... end
module Mutations : sig ... end
module Queries : sig ... end
val schema : Mina_lib.t Graphql_async.Schema.schema
val schema_limited : Mina_lib.t Graphql_async.Schema.schema