フィールドが null かどうかをタイヤで確認しようとしています。これが私のモデルに対する私のクエリです。
def self.search(params)
tire.search(load: true, match_all: {}, page: params[:page], per_page: 12) do
query do
boolean do
must { string params[:query], default_operator: "AND" }
must { term :online, true }
must_not { string 'name:Undefined' }
must_not { term 'price:null' }
end
end
end
end
must_not { term 'price:null' } is the code wich leads me to an error.
どのようにできるのか ?ありがとう