Hi,<br><br>I was wondering if anybody has any experience using multiple wildcards within a single MQL query?<br><br>I am trying to write a single query that returns all names that begin with a number for a given type (e.g. for "type" : "/base/bioventurist/science_or_technology_company", I want freebase to return 3M, 454 Life Sciences, 23andme etc.).<br>
<br>I have tried using property prefixes such as in the example below and not had any luck.<br><br>[<br> {<br> "a:name~=" : "^0*",<br> "b:name~=" : "^1*",<br> "c:name~=" : "^2*",<br>
"d:name~=" : "^3*",<br> "e:name~=" : "^4*",<br> "f:name~=" : "^5*",<br> "g:name~=" : "^6*",<br> "h:name~=" : "^7*",<br>
"i:name~=" : "^8*",<br> "j:name~=" : "^9*",<br> "name" : null,<br> "type" : "/base/bioventurist/science_or_technology_company"<br> }<br>]<br>
<br>I am unsure as to how to combine wildcards and either numeric comparisons "one of" operators and am not sure if this is even an effective solution.<br><br>Any suggestions or help would be much appreciated.<br>