Module Graphql_basic_scalars

This file defines basic graphql scalars in a shape usable by graphql_ppx for serialising.

It is meant to be used by backend graphql code.

It also includes basic round-trip testing facilities for GraphQL scalar types.

The graphql_lib library re-exports these basic scalars as well as other ones, and is meant to be used by client code (via grapqh_ppx).

module Make (Schema : Utils.Schema) : sig ... end
module type Json_intf = sig ... end
val unsigned_scalar_scalar : to_string:( 'a -> string ) -> string -> ( 'b, 'c option ) Utils.Schema.typ
val parse_uinteger : Yojson.Basic.t -> f:( string -> 'a ) -> 'b
module UInt32 : sig ... end
module UInt64 : sig ... end
module Index : sig ... end
module JSON : sig ... end
module String_json : sig ... end
module Time : sig ... end
module Span : sig ... end
module InetAddr : sig ... end
module Utils : sig ... end

Utility functors to build custom graphql scalars. These functors parametric in the GraphQL Schema module, so that we can use them either with the async version (for the main application) or the pure version (for tests).

module Testing : sig ... end