gpt4 book ai didi

ruby-on-rails - 对于 Rails 和 GraphQL 项目,如何定义多个同名查询?

转载 作者:行者123 更新时间:2023-12-02 04:23:00 24 4
gpt4 key购买 nike

这是一些背景信息:我使用的是 Rails 5.1.4、Ruby 2.6.1 和 GraphQL 1.9。我的 Rails 项目当前配置为仅 REST api 项目。但是,我开始将其转换为使用 GraphQL。运行 graphql 相关生成器后,我目前有一个 graphql_controller.rb 文件和一个 query_type.rb 文件。

对于我的数据库模型,我有一个 SchoolCourse 模型,它描述了大学教授的特定类(class)。对于这个模型,我定义了一个 school_course_type.rb。在我的 query_type.rb 文件中,我为 schoolCourse 查询定义了一个字段。

但是,有两种类型的用户可以登录我的应用程序 - 教师和学生。如果用户是教师,则访问应用程序并查询 schoolCourse 将返回该特定教师教授的所有学校类(class)。如果用户是学生,则访问应用程序并查询 schoolCourse 将返回该特定学生参加的所有学校类(class)。在这两种情况下,schoolCourse 数据都是同一类型 (school_course_type)。

我目前在 query_type.rb 中定义了 schoolCourse 查询以供教师使用。但是,如果我想扩展 schoolCourse 查询以使其也适用于学生,似乎我必须更新 schoolCourse 查询以包含 if/else 逻辑看起来像这样:

# This is how it currently looks like:

def schoolCourses
teacher_user = context[:current_user]
teacher_user.school_courses
end


# This is how I think it would change:

def schoolCourses
user = context[:current_user]

if user.type == 'teacher'
user.school_courses
else
# different way for students to retrieve school courses
end
end

虽然这可能有效,但这并不理想。 我要解决的主要问题是定义多个 schoolCourse 查询,以便教师使用一个版本,学生使用另一个版本。

在我当前的应用程序中,我有 2 个 schoolCourse Controller - 一个用于教师,一个用于学生,通过将其拆分为两个文件,我的 API 更加简洁。 有没有什么方法可以对 query_type.rb 文件做一些类似的事情,我有一个 query_type 用于教师,另一个用于学生?你在你的项目中是如何处理这个问题的?

添加更多上下文 - 9/20/2019 2:10pm PST

  1. 学校类(class)在学生和教师之间有何区别?因此学校类(class)对象对于学生和教师来说是相同的。目前在我的 RESTful 后端中,我有 2 个单独的 Controller 文件用于获取学生类(class)。一个是给老师的,另一个是给学生的。当老师的学校类(class) Controller 被调用时,它只会返回登录老师的学校类(class)。同样,当调用学生的学校类(class) Controller 时,它只会返回已登录学生的学校类(class)。

  2. 您能详细说明为什么要查询多个学校类(class)吗?我想查询多个学校类(class)的原因是因为我不想这样做在单个学校类(class)查询中添加 if/else 逻辑,为教师做一些事情,为学生做一些其他事情。我知道它会起作用,但我可能还有 50 个其他模型,我不必在每个查询中放入相同类型的 if/else 逻辑。

最佳答案

需要更多关于学校类(class)如何区分学生和教师的信息。您能否详细说明为什么要查询多个学校类(class)?

您可以定义使用接口(interface):

类型将变成如下所示:

module Types
module Output
StudentCourse = GraphQL::ObjectType.define do
name "StudentCourse"

interfaces [CourseInterface]

field :student_specific_field, Types::Output::SpecificField

end
end
end

module Types
module Output
TeacherCourse = GraphQL::ObjectType.define do
name "TeacherCourse"

interfaces [CourseInterface]

field :teacher_specific_field, Types::Output::SpecificField

end
end
end

module Types
module Output
CourseInterface = GraphQL::InterfaceType.define do
name "Course"

resolve_type lambda { |context, obj, _|
case context[:user].type?
when student
Types::Output::StudentCourse
when teacher
Types::Output::TeacherCourse
else
raise Types::CantResolveType, "can't resolve type: #{obj.class}"
end
}

field :id, !types.ID
end
end
end

关于ruby-on-rails - 对于 Rails 和 GraphQL 项目,如何定义多个同名查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58033039/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com