Module Graphql_lib.Serializing

serializing.ml -- Contains the functors used to extend graphql_ppx modules as well as some ad-hoc encoders and decoders in modules for use with ppxCustom. These serializers are here to support existing code and the one from the Scalars module should be used instead if possible.

val unimplemented : string -> string -> 'a -> 'b
val unimplemented_serializer : string -> 't -> 'a
val optional : f:( [> `Null ] as 'a -> 'b ) -> 'c -> 'd option
module type GraphQLQuery = sig ... end
module ExtendQuery (Q : GraphQLQuery) : sig ... end
module type S = sig ... end
module type Json_intf = S with type conv := Yojson.Basic.t
module type String_intf = S with type conv := Base.string
module Optional (F : Json_intf) : Json_intf with type t = F.t Base.option
module Int64 : Json_intf with type t = Signed.Int64.t
module Token_s : sig ... end