Make.Fields
type ('ctx, 'src, 'args_to_json, 'out, 'subquery) field = {
field : ( 'ctx, 'src ) Schema.field; |
to_json : 'args_to_json; |
name : string; |
}
a record contraining the ocaml-graphql-server field
, its name
and a to_string
function to be used when serializing a query
val field :
?doc:string ->
?deprecated:Schema.deprecated ->
string ->
typ:( 'a, 'out ) Schema.typ ->
args:( 'b, 'out0, 'c, 'd, 'e ) Arg.args ->
resolve:( 'a Schema.resolve_info -> 'f -> 'g ) ->
( 'h, 'i, 'j, 'out1, 'k ) field
wrapper around the field
typ
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 -> 'h ) ->
( 'i, 'j, 'k, ( 'b, Schema.field_error ) Stdlib.result Schema.Io.t, 'l )
field
wrapper around the io_field
typ