Skip to content
Advertisement

graphql resolver return Cannot return null for non-nullable field from asynchronous function in nodejs

Don’t get me wrong I have been forced to use waterfall because I need to execute one function after another. There is no problem related to the schema or return type just stuck with asynchronous waterfall. All I need is to return from the final function not before.

JavaScript

response from graphiql because It returns early. And console.log is working

JavaScript

Advertisement

Answer

Could you use async/await here? Along the lines of the below

JavaScript

Also I’m not familiar with the async library, but should you actually be returning the async.waterfall() call in your example as that returns undefined according to the docs.

Perhaps just

JavaScript

If not perhaps share what GraphQL library you are using as well

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement