Module Schema.Arg

type 'a arg = 'a Graphql_schema.Make(IO)(Field_error).Arg.arg
type 'a arg_typ = 'a Graphql_schema.Make(IO)(Field_error).Arg.arg_typ
type (!'d, !'e) arg_list = ( 'd, 'e ) Graphql_schema.Make(IO)(Field_error).Arg.arg_list =
| [] : ( 'a, 'a ) arg_list
| :: : 'a0 arg * ( 'b, 'c ) arg_list -> ( 'b, 'a0 -> 'c ) arg_list
val arg : ?doc:string -> string -> typ:'a arg_typ -> 'a arg
val arg' : ?doc:string -> string -> typ:'a option arg_typ -> default:'a -> 'a arg
val scalar : ?doc:string -> string -> coerce:( Graphql_parser.const_value -> ( 'a, string ) Stdlib.result ) -> 'a option arg_typ
val enum : ?doc:string -> string -> values:'a enum_value list -> 'a option arg_typ
val obj : ?doc:string -> string -> fields:( 'a, 'b ) arg_list -> coerce:'b -> 'a option arg_typ
val int : int option arg_typ
val string : string option arg_typ
val bool : bool option arg_typ
val float : float option arg_typ
val guid : string option arg_typ
val list : 'a arg_typ -> 'a list option arg_typ
val non_null : 'a option arg_typ -> 'a arg_typ