Hi,<br>Where can I find more reference on the &#39;/type/reflect&#39; properties i.e. /type/reflect/any_master, /type/reflect/any_reverse and /type/reflect/any_value. I see it being used in discussions and mailing lists but was not able to find any info on these topics in the MQL tutorial or the architecture/data model notes.<br>
Here is a case/problem that I am trying to solve<br>&nbsp;- Given a person&#39;s name and related information like country of birth, profession, etc. find its freebase id.<br>&nbsp;- The query should not rely on specific types like /location/country as the place associated with a persons name could be a state or city or county too. Same with profession, employers, etc.<br>
<br>After poking around into lists and discussions I tried the following query which works, at least I think it is working. However I need to read up more on the &#39;/type/reflect&#39; to be confident.<br><br>{<br>&nbsp; &quot;query&quot; : [<br>
&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;/type/reflect/any_master&quot; : [<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;name&quot; : &quot;new zealand&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;id&quot; : [],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;name&quot; : &quot;peter jackson&quot;,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;type&quot; : &quot;/people/person&quot;<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp; ]<br>}<br><br><br>Thanks.<br>
Sumit