You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GraphQLLocatedError("<lambda>() got an unexpected keyword argument 'first'",)
I think the major cause of the errors is the API change in graphql-core v2.0.0:
New resolvers API. Moving from resolver(root, args, context, info) to resolver(root, info, **args)
It would be possible to limit versions of the graphql-core depency below 2.0.0 (it's now 'graphql-core>=0.5.0'), but I think that would be not very nice.
Would you accept a pull request that updates the code to the new resolver API?