Module Graphql_wrapper.Make

Parameters

module Schema : Graphql_intf.Schema

Signature

type 'a enum_value = {
as_string : string;
value : 'a;
enum_value : 'a Schema.enum_value;
}

wrapper around the enum_value type

val enum_value : ?doc:string -> ?deprecated:Schema.deprecated -> string -> value:'a -> 'b enum_value

wrapper around the enum_value function

module Arg : sig ... end
module Fields : sig ... end
module Abstract_fields : sig ... end
module Subscription_fields : sig ... end
val field : ?doc:string -> ?deprecated:Schema.deprecated -> string -> typ:( 'a, 'b ) Schema.typ -> args:( 'c, 'b, 'd, 'e, 'f ) Arg.args -> resolve:( 'a Schema.resolve_info -> 'g -> 'd ) -> ( 'h, 'i ) Schema.field
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 -> 'd ) -> ( 'h, 'i ) Schema.field
val subscription_field : ?doc:string -> ?deprecated:Schema.deprecated -> string -> typ:( 'a, 'b ) Schema.typ -> args: ( 'c, ( 'b Schema.Io.Stream.t, Schema.field_error ) Stdlib.result Schema.Io.t, 'd, 'e, 'f ) Arg.args -> resolve:( 'a Schema.resolve_info -> 'd ) -> 'g Schema.subscription_field
val abstract_field : ?doc:string -> ?deprecated:Schema.deprecated -> string -> typ:( 'a, 'b ) Schema.typ -> args:( 'c, 'b, 'd, 'e, 'f ) Arg.args -> Schema.abstract_field
val enum : ?doc:string -> string -> values:'a enum_value list -> ( 'b, 'c option ) Schema.typ
module Propagated : sig ... end

The Propagated module contains the parts of the Schema we do not modify

include module type of struct include Propagated end

The Propagated module contains the parts of the Schema we do not modify

val obj : ?doc:string -> string -> fields:( ( 'a, 'b option ) Schema.typ -> ( 'a, 'b ) Schema.field list ) -> ( 'a, 'b option ) Schema.typ
val schema : ?mutation_name:string -> ?mutations:( 'a, unit ) Schema.field list -> ?subscription_name:string -> ?subscriptions:'a Schema.subscription_field list -> ?query_name:string -> ( 'a, unit ) Schema.field list -> 'a Schema.schema
val interface : ?doc:string -> string -> fields:( ( 'a, 'b ) Schema.abstract_typ -> Schema.abstract_field list ) -> ( 'a, 'b ) Schema.abstract_typ
val non_null : ( 'a, 'b option ) Schema.typ -> ( 'a, 'b ) Schema.typ
val string : ( 'a, string option ) Schema.typ
val list : ( 'a, 'b ) Schema.typ -> ( 'a, 'b list option ) Schema.typ
val bool : ( 'a, bool option ) Schema.typ
val int : ( 'a, int option ) Schema.typ
type ('a, 'b) typ = ( 'a, 'b ) Schema.typ
val scalar : ?doc:string -> string -> coerce:( 'a -> Yojson.Basic.json ) -> ( 'b, 'a option ) Schema.typ
type ('a, 'b) abstract_value = ( 'a, 'b ) Schema.abstract_value
val guid : ( 'a, string option ) Schema.typ
val add_type : ( 'a, 'b ) Schema.abstract_typ -> ( 'a, 'c option ) Schema.typ -> 'c -> ( 'a, 'b ) Schema.abstract_value
val float : ( 'a, float option ) Schema.typ
type 'ctx resolve_info = 'ctx Schema.resolve_info = {
ctx : 'ctx;
field : Graphql_parser.field;
fragments : Schema.fragment_map;
variables : Schema.variable_map;
}
type 'a schema = 'a Schema.schema
type ('a, 'b) field = ( 'a, 'b ) Schema.field
type 'a subscription_field = 'a Schema.subscription_field
type deprecated = Schema.deprecated
type variable_map = Schema.variable_map
type fragment_map = Schema.fragment_map
val execute : 'a Schema.schema -> 'a -> ?variables:Schema.variables -> ?operation_name:string -> Graphql_parser.document -> [ `Response of Yojson.Basic.json | `Stream of Yojson.Basic.json Schema.response Schema.Io.Stream.t ] Schema.response Schema.Io.t
type 'a response = 'a Schema.response
type variables = (string * Graphql_parser.const_value) list
type abstract_field = Schema.abstract_field
val union : ?doc:string -> string -> ( 'a, 'b ) Schema.abstract_typ
type ('a, 'b) abstract_typ = ( 'a, 'b ) Schema.abstract_typ
module StringMap = Propagated.StringMap
module Io = Propagated.Io