Reputation: 59
I want to search files like this but I am getting exception.
query = "mimeType ='application/pdf' and properties has { key="+ "'" + agency + "'" +"and value contains"+ "'" + someValue + "'" + " and visibility='PUBLIC'} ";
request = service.files().list().setQ(query);
Do we need to search by exact value?
query = "mimeType ='application/pdf' and properties has { key="+ "'" + agency + "'" +"and value = "+ "'" + someValue + "'" + " and visibility='PUBLIC'} ";
request = service.files().list().setQ(query);
The second one is working, but is there any feature to support wildcard characters?
Upvotes: 2
Views: 1588
Reputation: 19835
Yes, its in official docs (thou last year they werent searchable).
https://developers.google.com/drive/web/search-parameters#properties to search by exact value.
Upvotes: 1
Reputation: 1329
Yes, for custom properties you have to seach with exact values
properties has { key='additionalID' and value='8e8aceg2af2ge72e78' and visibility='PRIVATE' }
https://developers.google.com/drive/web/search-parameters#properties
Upvotes: 5