Project

General

Profile

Bug #7166

Updated by Ward Vandewege over 8 years ago

 
 This invalid filter 

 api_client.collections().list(filters=[['portable_data_hash', 'somepdhoranother+size']], select=['portable_data_hash', 'uuid'], limit=100000).execute() 

 is simply ignored; the query above returns all collections. 

 api_client.collections().list(filters=[['portable_data_hash', '=', 'somepdhoranother+size']], select=['portable_data_hash', 'uuid'], limit=100000).execute() 

 the above filter is correct and works as expected.

Back