Is it possible to recieve args
in myType
? It doesnt seem to be working for me.
The Example given doesnt have it
But what I would like to do is:
type MyType {
...
customField(args:String) String @lambda
}
So that I can query like:
queryMyType {
customField(args: $args)
}