我是 Graphql 的新手。对于一个简单的用例,假设我有一个简单的模型,
class Post < ActiveRecord::Base
has_many :comments
end
以下是我的 graphql query_type.rb 中的代码
PostType = GraphQL::ObjectType.define do
#field :comments, types[CommentType]
#connection :comments, CommentType.connection_type
end
两者都field and connection
对我有用。但是哪一个是正确的方法。