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

2020-08-13から1日間の記事一覧

個体に対しての愛情

個体に精神的負荷をかけて毎回ちょっとだけごめんねーと思っちゃう。

WIP ActiveRecordでAND条件をORしたいときの方法

とりあえずやってみた posted_ats_and_user_ids = [[today, 1], [tomorrow, 2]] conditions = Array.new(posted_ats_and_ids.size) { "id = ? AND posted_at > ?" }.join(" OR ") # => "id = ? AND posted_at > ? OR id = ? AND posted_at > ?" Post.where(c…

GraphQLのEnumのエラーの解消

状況 Railsで以下graphql-rubyを使っている https://graphql-ruby.org/ create mutationの payloadで Enumを参照しようとした時に発生 mutation { createAbc { input: { reason: a } }, { abc { reason } } enum AbcEnum { a b c } エラー内容 GraphQL::Enum…