how to add logger and allowUndefinedInResolve in makeExecutableSchema method in latest version #5111
Unanswered
bharatvaggu
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Could you give more details about your use cases for each? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
looks logger and allowUndefinedInResolve removed from makeExecutableSchema method in latest version.
previously we were using like this in version 7.1.5
const schema = makeExecutableSchema({
typeDefs,
resolvers,
logger: { log: e => (...something) },
allowUndefinedInResolve: true
});
now in version 9.0.0, I didn't find logger and allowUndefinedInResolve properties in makeExecutableSchema method. What is the alternate for this?
Beta Was this translation helpful? Give feedback.
All reactions