Source: show
# File app/models/concerns/jsonb/relation.rb, line 3 def in_jsonb(column, key, value) # TODO find a robust jsonb scope searching library or Rails feature? AR::Store? value.nil? ? is_null_in_jsonb(column, key) : equals_in_jsonb(column, key, value) end