handle mutation that returns an array#45
Conversation
|
Hi, thanks for the PR! It looks like you found an issue with looking up the correct return type for mutations. I agree that the code is hard to follow. I imagine all of it is. The add-on was coded rather quickly and definitely needs a lot of work. The fix you added looks good; however, it does need a test. Let me know if you need some help adding a test, otherwise, have at it. Thanks! |
|
@jneurock right on, I suppose I could use a hand with a test. maybe just point me in the right direction? |
|
Acceptance test would be fine. That's how all the queries and mutations are currently tested. It seems like you outlined a fine test scenario above. |
d2c2f78 to
5b345aa
Compare
|
@jneurock how's this looking? |
|
Looks great. Thanks for finding/fixing the issue! |

Hey 👋
so, first laid eyes on graphql AND this codebase for the first time last week, so bear that in mind :)
I feel like I'm likely just doing something wrong or have missed some config, however...
Issue:
we have a mutation that returns a list of records
in the schema it looks something like this:
createNewThing(input: CustomInput!): [NewThingRecord]and in our handler we have something along these lines:
the problem is that
newThingsthat is passed to the mutation function isundefinedhere because the returnTypenameis nested underofTypeinstead of being top level in/mocks.mutationsthe work around we currently have is to just use the
_dbinstance that's also passed but I'm wondering if we're just doing something else wrong.Maybe it's not common practice to return a list from a mutation?
or maybe I'm just missing some other configuration?
anyway... would love any eyes/input on this.
I struggled a bit to follow the code that gets the
returnType, I wonder if maybe some checking could be done earlier in the chain? if I'm not just doing something else dumb that is ;)