Module Make.Propagated

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 = Schema.StringMap
module Io = Schema.Io