Module Graphql_wrapper

This file provides a wrapper around an ocaml-graphql-server Schema module, in order to build to_json functions for query fields. These can later be used to serialize queries.

The split argument is used as such:

let add_payment_reciept_input =
    obj "AddPaymentReceiptInput"
    ~coerce:(fun payment added_time -> { payment; added_time })
    ~split:(fun f (t : t) -> f t.payment t.added_time)
    ~fields:[...]

The to_json function from the add_payment_reciept_input can then be used as such :

let input_as_json = add_payment_reciept_input.to_json
                    {payment = "..."; added_time = "..."}
module Make (Schema : Graphql_intf.Schema) : sig ... end