Module Schema.Arg

type (!'obj_arg, !'a) arg_typ = ( 'obj_arg, 'a ) Graphql_wrapper.Make(Graphql_async.Schema).Arg.arg_typ = {
arg_typ : 'obj_arg Graphql_async.Schema.Arg.arg_typ;
to_json : 'a -> Yojson.Basic.t;
}
type (!'obj_arg, !'a) arg = ( 'obj_arg, 'a ) Graphql_wrapper.Make(Graphql_async.Schema).Arg.arg =
| Arg : {
name : string;
doc : string option;
typ : ( 'obj_arg0, 'a0 ) arg_typ;
} -> ( 'obj_arg0, 'a0 ) arg
| DefaultArg : {
name : string;
doc : string option;
typ : ( 'obj_arg1 option, 'a1 ) arg_typ;
default : 'obj_arg1;
} -> ( '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 obj : ?doc:string -> string -> fields:( 'a, 'b, 'c, 'd, 'e ) args -> coerce:'c -> split:( 'e -> 'f -> Yojson.Basic.t ) -> ( 'b option, 'f option ) arg_typ
val non_null : ( 'a option, 'b option ) arg_typ -> ( 'a, 'b ) arg_typ
val list : ( 'a, 'b ) arg_typ -> ( 'a list option, 'b list option ) arg_typ
val enum : ?doc:string -> string -> values:'a enum_value list -> ( 'a option, 'a option ) arg_typ
val arg : ?doc:string -> string -> typ:( 'a, 'b ) arg_typ -> ( 'a, 'b ) arg
val arg' : ?doc:string -> string -> typ:( 'a option, 'b ) arg_typ -> default:'a -> ( 'a, 'b ) arg