Module Make.Arg

type ('obj_arg, 'a) arg_typ = {
arg_typ : 'obj_arg Schema.Arg.arg_typ;
to_json : 'a -> Yojson.Basic.t;
}

wrapper around the Arg.arg_typ type

type ('obj_arg, 'a) arg =
| Arg : {
name : string;
doc : string option;
typ : ( 'obj_arg, 'a ) arg_typ;
} -> ( 'obj_arg, 'a ) arg
| DefaultArg : {
name : string;
doc : string option;
typ : ( 'obj_arg option, 'a ) arg_typ;
default : 'obj_arg;
} -> ( 'obj_arg, 'a ) arg

wrapper around the Arg.arg type

Wrapper around the Arg.arg_list type.

The ocaml-graphql-server library uses this gadt type for lists of arguments used with fields and obj argument types.

This enables to the correct types for the coerce and resolve functions, in the 'args parameter below.

We wrap around this and do the same thing to build the types of the to_json functions.

type (_, _, _, _, _) args =
| [] : ( 'ctx, 'out, 'out, string * Yojson.Basic.t, Yojson.Basic.t ) args
| :: : ( 'a, 'input ) arg * ( 'ctx, 'out, 'args, 'field_to_json, 'obj_to_json ) args -> ( 'ctx, 'out, 'a -> 'args, 'input -> 'field_to_json, 'input -> 'obj_to_json ) args
val field_to_json : 'ctx 'out 'arg 'field_to_json 'obj_to_json. string -> ( 'ctx, 'out, 'arg, 'field_to_json, 'obj_to_json ) args -> (string * Yojson.Basic.t) list -> 'field_to_json

field_to_json builds the serializer function for a field, based on the list of its arguments.

val arg_obj_to_json : 'ctx 'out 'arg 'field_to_json 'obj_to_json. ( 'ctx, 'out, 'arg, 'field_to_json, 'obj_to_json ) args -> (string * Yojson.Basic.t) list -> 'obj_to_json

arg_obj_to_json builds the serializer function for an obj argument, based on the list of its fields.

val to_ocaml_graphql_server_args : 'ctx 'out 'args_server 'field_to_json 'obj_to_json. ( 'ctx, 'out, 'args_server, 'field_to_json, 'obj_to_json ) args -> ( 'out, 'args_server ) Schema.Arg.arg_list

extracts the wrapped Arg.arg_list to pass to ocaml-graphql-server functions

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:'f -> split:( 'g -> 'h -> Yojson.Basic.t ) -> ( 'i option, 'h option ) arg_typ
val non_null : ( 'a option, 'b option ) arg_typ -> ( 'c, 'd ) arg_typ
val list : ( 'a, 'b ) arg_typ -> ( 'c list option, 'd list option ) arg_typ
val enum : ?doc:string -> string -> values:'a enum_value list -> ( 'b option, 'c option ) arg_typ

wrapper around the enum arg_typ. For this type, the to_json function can be infered from the list of enum_value.

val arg : ?doc:string -> string -> typ:( 'a, 'b ) arg_typ -> ( 'c, 'd ) arg
val arg' : ?doc:string -> string -> typ:( 'a option, 'b ) arg_typ -> default:'c -> ( 'd, 'e ) arg