Interface MemberSearchAndOrQuery<T>

interface MemberSearchAndOrQuery<T> {
    andQuery?: T[];
    orQuery?: T[];
}

Type Parameters

  • T

Hierarchy

Properties

Properties

andQuery?: T[]

array of snowflakes, strings, or integers | The values to match against using AND logic (1-100 characters, max 10)

orQuery?: T[]

array of snowflakes, strings, or integers | The values to match against using OR logic (1-100 characters, max 10)