Django graphql auth 未显示突变中的所有用户字段

发布于 2025-01-09 11:25:56 字数 447 浏览 0 评论 0原文

我按照下面的教程在我的 django 应用程序中介绍了用户身份验证。

https://django-graphql-auth.readthedocs.io/en/latest /quickstart/

它创建了如下用户突变,

Graphql 用户突变

更新用户的突变仅显示两个字段,名字和姓氏。然而,我的用户模型还有其他字段,例如 is_staff、is_superuser、性别。

我也想控制更新这些字段。

请告知我怎样才能做到这一点?

I have followed below tutorial to introduce user authentication in my django app.

https://django-graphql-auth.readthedocs.io/en/latest/quickstart/

It has created the user mutations as below,

Graphql user mutation

The mutation to update user shows only two fields, first name and last name. However my user model has other fields as well like is_staff, is_superuser, gender.

I would like to get control on updating those fields as well.

Please advise how can I get that done?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就是爱搞怪 2025-01-16 11:25:56

我通过将以下代码添加到应用程序设置来修复它,

GRAPHQL_AUTH['UPDATE_MUTATION_FIELDS'] = [
    'first_name',
    'last_name',
    'is_staff',
    'is_active',
    'gender',
    ]

I fixed it by adding below code to the app settings,

GRAPHQL_AUTH['UPDATE_MUTATION_FIELDS'] = [
    'first_name',
    'last_name',
    'is_staff',
    'is_active',
    'gender',
    ]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文