Django graphql auth 未显示突变中的所有用户字段
我按照下面的教程在我的 django 应用程序中介绍了用户身份验证。
https://django-graphql-auth.readthedocs.io/en/latest /quickstart/
它创建了如下用户突变,
更新用户的突变仅显示两个字段,名字和姓氏。然而,我的用户模型还有其他字段,例如 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,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过将以下代码添加到应用程序设置来修复它,
I fixed it by adding below code to the app settings,