如何使石墨烯解析器同时运行

发布于 2025-01-11 09:15:20 字数 569 浏览 1 评论 0原文

我有一个类似于下面的石墨烯查询,其中我有超过 1 个解析器函数。这些查询按 Django 调试工具栏顺序运行。即使这些查询彼此依赖。我一直在深入研究 Graphene 存储库和 stackoverflow,了解如何异步处理普通查询解析器,但无济于事。似乎有一些方法可以解决订阅问题(即网络套接字)。但目前我唯一关心的是查询。我不确定我可能需要哪些库或如何配置它。

class MyQuery(ObjectType):
    test_one = graphene.Field(TestNode)
    test_two = graphene.Field(TestNode)

    def resolve_test_one(self, info, **args):
        return MyTestModel.objects.get(id="id-1")

    def resolve_test_two(self, info, **args):
        return MyTestModel.objects.get(id="id-2")

I have a graphene query that looks similar to below where I have more than 1 resolver function. These queries run sequentially per the Django debug toolbar. Even though these queries are not dependent on each-other. I've been digging through the Graphene repo and stackoverflow for how to handle vanilla query resolvers asynchronously to no avail. It seems there are ways to tackle subscriptions(ie websockets). But currently my only concern is queries. I'm not sure which libraries I may need or how to configure this.

class MyQuery(ObjectType):
    test_one = graphene.Field(TestNode)
    test_two = graphene.Field(TestNode)

    def resolve_test_one(self, info, **args):
        return MyTestModel.objects.get(id="id-1")

    def resolve_test_two(self, info, **args):
        return MyTestModel.objects.get(id="id-2")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文