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 &quot;type&quot; : &quot;/base/bioventurist/science_or_technology_company&quot;, 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>&nbsp; {<br>&nbsp;&nbsp;&nbsp; &quot;a:name~=&quot; : &quot;^0*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;b:name~=&quot; : &quot;^1*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;c:name~=&quot; : &quot;^2*&quot;,<br>
&nbsp;&nbsp;&nbsp; &quot;d:name~=&quot; : &quot;^3*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;e:name~=&quot; : &quot;^4*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;f:name~=&quot; : &quot;^5*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;g:name~=&quot; : &quot;^6*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;h:name~=&quot; : &quot;^7*&quot;,<br>
&nbsp;&nbsp;&nbsp; &quot;i:name~=&quot; : &quot;^8*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;j:name~=&quot; : &quot;^9*&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;name&quot; : null,<br>&nbsp;&nbsp; &quot;type&quot; : &quot;/base/bioventurist/science_or_technology_company&quot;<br>&nbsp; }<br>]<br>
<br>I am unsure as to how to combine wildcards and either numeric comparisons &quot;one of&quot; operators and am not sure if this is even an effective solution.<br><br>Any suggestions or help would be much appreciated.<br>