TrieveRubyClient::ChunkFilter

Properties

Name Type Description Notes
must Array<ConditionType> All of these field conditions have to match for the chunk to be included in the result set. [optional]
must_not Array<ConditionType> None of these field conditions can match for the chunk to be included in the result set. [optional]
should Array<ConditionType> Only one of these field conditions has to match for the chunk to be included in the result set. [optional]

Example

require 'trieve_ruby_client'

instance = TrieveRubyClient::ChunkFilter.new(
  must: null,
  must_not: null,
  should: null
)