Thanks for your response Chris.&nbsp; <br><br>We got what we wanted with this query:<br><br>[<br>&nbsp; {<br>&nbsp;&nbsp;&nbsp; &quot;/business/company/<div>headquarters&quot; : [<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;/location/location/<span>geolocation</span>&quot; : [<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;*&quot; : null,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;optional&quot; : true<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ],<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;citytown&quot; : null,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;postal_code&quot; : null,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;state_province_region&quot; : null,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;street_address&quot; : []<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; ],<br>&nbsp;&nbsp;&nbsp; &quot;limit&quot; : 1000,<br>&nbsp;&nbsp;&nbsp; &quot;name&quot; : null,<br>


&nbsp;&nbsp;&nbsp; &quot;type&quot; : &quot;/base/bioventurist/science_or_technology_company&quot;<br>&nbsp; }<br>]</div><br><br><div class="gmail_quote">On Fri, Jan 9, 2009 at 8:04 PM, Christopher R. Maden <span dir="ltr">&lt;<a href="mailto:crism@metaweb.com">crism@metaweb.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">Rob Warren wrote:<br>
&gt; This query is not returning any of the /location/location properties,<br>
&gt; even though the schema shows that /location/location is an inherited type.<br>
<br>
</div>The special &quot;*&quot;:null wildcard only picks up properties of /type/object<br>
and of the explicit or expected type of the object. &nbsp;Since you specified<br>
no type, it only returns the company headquarters properties.<br>
<br>
You could do:<br>
<br>
&quot;headquarters&quot;:[<br>
 &nbsp; {<br>
 &nbsp; &nbsp; &quot;*&quot;:null,<br>
 &nbsp; &nbsp; &quot;type&quot;:&quot;/location/location&quot;<br>
 &nbsp; }<br>
]<br>
<br>
but you would lose the headquarters properties. &nbsp;If you want properties<br>
relating to more than one type in the same query, you must ask for them<br>
explicitly, with fully-qualified property IDs.<br>
<br>
~Chris<br>
--<br>
<font color="#888888">Christopher R. Maden<br>
Data Architect<br>
Freebase.com: &lt;URL: <a href="http://www.freebase.com/" target="_blank">http://www.freebase.com/</a> &gt;<br>
Metaweb Technologies, Inc. &lt;URL: <a href="http://www.metaweb.com/" target="_blank">http://www.metaweb.com/</a> &gt;<br>
_______________________________________________<br>
Developers mailing list<br>
<a href="mailto:Developers@freebase.com">Developers@freebase.com</a><br>
<a href="http://lists.freebase.com/mailman/listinfo/developers" target="_blank">http://lists.freebase.com/mailman/listinfo/developers</a><br>
</font></blockquote></div><br>