graphql-leveler
graphql-leveler copied to clipboard
Passing `args` to nested field
Hi! Thank you for putting this together! I think you've hit on something salient here.
I'm exploring graphql-leveler to solve a problem I'm having and was wondering if there was a way to pass args down the path arg. E.g.:
{
data: {
some: {
deeply: {
nested: {
field(<args>): "I am nested!"
}
}
}
}
}
pass args like:
{
myProperty: _get(path: "some.deeply.nested.field<args>")
}