-
Notifications
You must be signed in to change notification settings - Fork 20
Closed
Description
// generated code by the PPX
module MyQuery = {
module Raw = {
type t = {scalarsInput: string};
};
let query = "query ($arg: VariousScalarsInput!) {\nscalarsInput(arg: $arg) \n}\n";
type t = {scalarsInput: string};
type t_variables = {arg: t_variables_VariousScalarsInput}
and t_variables_VariousScalarsInput = {
nullableString: option(string),
string,
nullableInt: option(int),
int,
nullableFloat: option(float),
float,
nullableBoolean: option(bool),
boolean: bool,
nullableID: option(string),
id: string,
};
let parse: Raw.t => t =
(value) => (
{
scalarsInput: {
let value = (value: Raw.t).scalarsInput;
value;
},
}: t
);
let serialize: t => Raw.t =
(value) => (
{
let scalarsInput = {
let value = (value: t).scalarsInput;
value;
};
{
scalarsInput: scalarsInput,
};
}: Raw.t
);
let rec serializeVariables: t_variables => Js.Json.t =
inp =>
[|
(
"arg",
(a => Some(serializeInputObjectVariousScalarsInput(a)))(inp.arg),
),
|]
|> Js.Array.filter(
fun
| (_, None) => false
| (_, Some(_)) => true,
)
|> Js.Array.map(
fun
| (k, Some(v)) => (k, v)
| (k, None) => (k, Js.Json.null),
)
|> Js.Dict.fromArray
|> Js.Json.object_
and serializeInputObjectVariousScalarsInput:
t_variables_VariousScalarsInput => Js.Json.t =
inp =>
[|
(
"nullableString",
(
a =>
switch (a) {
| None => None
| Some(b) => (a => Some(Js.Json.string(a)))(b)
}
)(
inp.nullableString,
),
),
("string", (a => Some(Js.Json.string(a)))(inp.string)),
(
"nullableInt",
(
a =>
switch (a) {
| None => None
| Some(b) => (a => Some(Js.Json.number(float_of_int(a))))(b)
}
)(
inp.nullableInt,
),
),
("int", (a => Some(Js.Json.number(float_of_int(a))))(inp.int)),
(
"nullableFloat",
(
a =>
switch (a) {
| None => None
| Some(b) => (a => Some(Js.Json.number(a)))(b)
}
)(
inp.nullableFloat,
),
),
("float", (a => Some(Js.Json.number(a)))(inp.float)),
(
"nullableBoolean",
(
a =>
switch (a) {
| None => None
| Some(b) => (a => Some(Js.Json.boolean(a)))(b)
}
)(
inp.nullableBoolean,
),
),
("boolean", (a => Some(Js.Json.boolean(a)))(inp.boolean)),
(
"nullableID",
(
a =>
switch (a) {
| None => None
| Some(b) => (a => Some(Js.Json.string(a)))(b)
}
)(
inp.nullableID,
),
),
("id", (a => Some(Js.Json.string(a)))(inp.id)),
|]
|> Js.Array.filter(
fun
| (_, None) => false
| (_, Some(_)) => true,
)
|> Js.Array.map(
fun
| (k, Some(v)) => (k, v)
| (k, None) => (k, Js.Json.null),
)
|> Js.Dict.fromArray
|> Js.Json.object_;
let makeVar = (~f, ~arg, ()) =>
f(
serializeVariables(
{
arg: arg,
}: t_variables,
),
)
and makeInputObjectVariousScalarsInput =
(
~nullableString=?,
~string,
~nullableInt=?,
~int,
~nullableFloat=?,
~float,
~nullableBoolean=?,
~boolean,
~nullableID=?,
~id,
(),
)
: t_variables_VariousScalarsInput => {
nullableString,
string,
nullableInt,
int,
nullableFloat,
float,
nullableBoolean,
boolean,
nullableID,
id,
};
let definition = (parse, query, makeVar, serialize);
let makeVariables = makeVar(~f=f => f);
};
// end of generated code by the ppx
Not sure if it's the best example. parse, serialize, makeVariables. definition and the input object constructors may or may not be used. In most cases only definition and makeVariables are used (definition passed to the GraphQL client and makeVariables to construct variables). But I think that is a tricky case because definition is referencing everything.
Metadata
Metadata
Assignees
Labels
No labels