Graphql_wrapper.Make
wrapper around the enum_value
type
val enum_value :
?doc:string ->
?deprecated:Schema.deprecated ->
string ->
value:'a ->
'b enum_value
wrapper around the enum_value
function
module Arg : sig ... end
module Fields : sig ... end
module Abstract_fields : sig ... end
module Subscription_fields : sig ... end
val field :
?doc:string ->
?deprecated:Schema.deprecated ->
string ->
typ:( 'a, 'b ) Schema.typ ->
args:( 'c, 'b, 'd, 'e, 'f ) Arg.args ->
resolve:( 'a Schema.resolve_info -> 'g -> 'd ) ->
( 'h, 'i ) Schema.field
val io_field :
?doc:string ->
?deprecated:Schema.deprecated ->
string ->
typ:( 'a, 'b ) Schema.typ ->
args:
( 'c, ( 'b, Schema.field_error ) Stdlib.result Schema.Io.t, 'd, 'e, 'f )
Arg.args ->
resolve:( 'a Schema.resolve_info -> 'g -> 'd ) ->
( 'h, 'i ) Schema.field
val subscription_field :
?doc:string ->
?deprecated:Schema.deprecated ->
string ->
typ:( 'a, 'b ) Schema.typ ->
args:
( 'c,
( 'b Schema.Io.Stream.t, Schema.field_error ) Stdlib.result Schema.Io.t,
'd,
'e,
'f )
Arg.args ->
resolve:( 'a Schema.resolve_info -> 'd ) ->
'g Schema.subscription_field
val abstract_field :
?doc:string ->
?deprecated:Schema.deprecated ->
string ->
typ:( 'a, 'b ) Schema.typ ->
args:( 'c, 'b, 'd, 'e, 'f ) Arg.args ->
Schema.abstract_field
val enum :
?doc:string ->
string ->
values:'a enum_value list ->
( 'b, 'c option ) Schema.typ
module Propagated : sig ... end
The Propagated
module contains the parts of the Schema we do not modify
include module type of struct include Propagated end
The Propagated
module contains the parts of the Schema we do not modify
module StringMap = Propagated.StringMap
module Io = Propagated.Io