[Answered ]-Django Strawberry Graphql Bad request 'str' object has no attribute 'execute_sync'

1👍

As @IainShelvington said in comments the parameter to GraphQLView should be a schema object you can also see it in docs:

 path('graphql', GraphQLView.as_view(schema=schema), name='graphql'),

Leave a comment