Interface MemberSearchQuery<T>

interface MemberSearchQuery<T> {
    andQuery?: T[];
    orQuery?: T[];
    range?: MemberSearchQueryRange<T>;
}

Type Parameters

  • T

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)

The range of values to match against