메인 콘텐츠로 건너뛰기
참고: 이 페이지는 아직 한국어로 번역되지 않았습니다. 아래는 영어 원문입니다.
type TopicFilter: (null | string | string[])[];
A TopicFilter provides a struture to define bloom-filter queries. Each field that is null matches any value, a field that is a string must match exactly that value and and array is effectively an OR-ed set, where any one of those values must match.

Source

providers/provider.ts:2605