happiness (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) happiness

2021-11-29から1日間の記事一覧

graphql-ruby のquery_type.rbの中のqueryを別ファイルに一括・個別に分離するためのありがたいリンク

ありがとうございます。 一括で分離する方法 github.com 個別に分離する方法 GraphQL with Ruby On Rails: Queries in Multiple Files GraphQL - Resolvers

graphql-ruby: unexpected field owner for "xxx": nil (NilClass)の直し方

ArgumentError: unexpected field owner for "posts": nil (NilClass) graphql-rubyで 新しいqueryをrootに追加したらこのエラーが出た。 module Types class QueryType < Types::Base::Object field :posts, Types::PostType.connection_type, null: false …