Hyun S. Moon

Results 6 comments of Hyun S. Moon

Another idea is to add a boolean flag to the parameters of strawberry_django.fields() that indicates a counter query. For example, one can define a counter query like the following: ```...

@bellini666 Please refer to the following link: https://strawberry.rocks/docs/guides/pagination/overview In the documentation above, there is an example of using metadata to return a total count when implementing the pagination function. According...

Thanks for your attention and fast reply. I tried graphiql=False but I still failed. But then I noticed an interesting phenomenon. When I run your suggestion (graphiql=False) with django debug...

I found the solution by myself. When I use channels, graphiql option should be given for GraphQLHTTPConsumer. The following worked for me. gql_http_consumer = AuthMiddlewareStack(GraphQLHTTPConsumer.as_asgi(schema=schema, graphql_ide=None)) Thanks.

I successfully setup gql_auth with the same requirement. (no username, firstname, lastname and email only) It's a configuration issue. try to add the following to your settings.py. ```py from gqlauth.settings_type...

I added test code but test code for migration doesn't work. The error message was like following: FAILED tests/test_login.py::TagsTestCase::test_tags_migrated - django.db.utils.NotSupportedError: SQLite schema editor cannot be used while foreign key...