Schema.Arg
type (!'obj_arg, !'a) arg =
( 'obj_arg, 'a ) Graphql_wrapper.Make(Graphql_async.Schema).Arg.arg =
| Arg : {
} -> ( 'obj_arg0, 'a0 ) arg | ||||
| DefaultArg : {
} -> ( 'obj_arg1, 'a1 ) arg |
type (!'b, !'c, !'d, !'e, !'f) args =
( 'b, 'c, 'd, 'e, 'f ) Graphql_wrapper.Make(Graphql_async.Schema).Arg.args =
| [] : ( 'ctx, 'out, 'out, string * Yojson.Basic.t, Yojson.Basic.t ) args |
| :: : ( 'a, 'input ) arg
* ( 'ctx0, 'out0, 'args, 'field_to_json, 'obj_to_json ) args -> ( 'ctx0,
'out0,
'a ->
'args,
'input ->
'field_to_json,
'input ->
'obj_to_json )
args |
val field_to_json :
string ->
( 'ctx, 'out, 'arg, 'field_to_json, 'obj_to_json ) args ->
(string * Yojson.Basic.t) list ->
'field_to_json
val arg_obj_to_json :
( 'ctx, 'out, 'arg, 'field_to_json, 'obj_to_json ) args ->
(string * Yojson.Basic.t) list ->
'obj_to_json
val to_ocaml_graphql_server_args :
( 'ctx, 'out, 'args_server, 'field_to_json, 'obj_to_json ) args ->
( 'out, 'args_server ) Graphql_async.Schema.Arg.arg_list
val int : ( int option, int option ) arg_typ
val scalar :
?doc:string ->
string ->
coerce:( Graphql_parser.const_value -> ( 'a, string ) Stdlib.result ) ->
to_json:( 'b -> Yojson.Basic.t ) ->
( 'a option, 'b option ) arg_typ
val string : ( string option, string option ) arg_typ
val float : ( float option, float option ) arg_typ
val bool : ( bool option, bool option ) arg_typ
val guid : ( string option, string option ) arg_typ
val enum :
?doc:string ->
string ->
values:'a enum_value list ->
( 'a option, 'a option ) arg_typ