문제

I have a query and I can apply filters on them without any problem. This works fine:

query.filter('foo =', 'bar')

But what if I want to filter my query by key or a list of keys?

I have them as Key() property or as a string and by trying something like this, it didn't work:

query.filter('key =', 'some_key')        #no success
query.filter('key IN', ['key1', 'key2']) #no success

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top