Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 807 Bytes

ChunkFilter.md

File metadata and controls

22 lines (16 loc) · 807 Bytes

TrieveRubyClient::ChunkFilter

Properties

Name Type Description Notes
must Array<FieldCondition> All of these field conditions have to match for the chunk to be included in the result set. [optional]
must_not Array<FieldCondition> None of these field conditions can match for the chunk to be included in the result set. [optional]
should Array<FieldCondition> 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
)