<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <author>
    <name>danm</name>
    <uri>http://www.freebase.com:80/view/user/danm</uri>
  </author>
    <generator uri="http://www.freebase.com/">Freebase Atom Feed Generator</generator>
    <id>http://www.freebase.com:80/view/freebase/help</id>
    <link rel="self" href="http://www.freebase.com:80/feed/discuss/topic/freebase/help"/>
    <title>Help Center</title>
    <updated>2008-09-06T17:06:14Z</updated>
  <entry>
    <author>
    <name>willmoffat</name>
    <uri>http://www.freebase.com:80/view/user/willmoffat</uri>
  </author>
    <content type="html">Hi parity, minor point: you don't need to send your authentication cookie for doing mqlread (only for mqlwrite).</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902e964</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902e964" title="Help Center: to get (image) statistics"/>
    <summary type="html">Hi parity, minor point: you don't need to send your authentication cookie for doing mqlread (only...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-29T06:31:11.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">I suspect /api/service/mqlread is returning a timeout or error.&amp;nbsp; My Perl is rusty, but the until loop doesn't look like it's checking for a 200 OK return response; it just looks like if you don't find a cursor, you assume the counting is complete and exit.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902e79a</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902e79a" title="Help Center: to get (image) statistics"/>
    <summary type="html">I suspect /api/service/mqlread is returning a timeout or error.&amp;nbsp; My Perl is rusty, but the...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-29T05:33:55.0012Z</updated>
  </entry><entry>
    <author>
    <name>skud</name>
    <uri>http://www.freebase.com:80/view/user/skud</uri>
  </author>
    <content type="html">The only real &amp;quot;batch update&amp;quot; tool in Freebase is the list importer.&amp;nbsp; If there were a link from the timezone to &amp;quot;places in this timezone&amp;quot; then you could do &amp;quot;import list&amp;quot; to do what you ask, but since there is no such link, I think you'll probably have to use the API.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902e4ba</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902e4ba" title="Help Center: Batch update data"/>
    <summary type="html">The only real &amp;quot;batch update&amp;quot; tool in Freebase is the list importer.&amp;nbsp; If there were a...</summary>
    <title>Help Center: Batch update data</title>
    <updated>2008-08-29T04:42:45.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">&lt;p&gt;The following is the code I used. Have a look only if you're free. I print out $count to see number of topics with images and $count~438 &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Afterwards I grep entire query result and got numbers close to you:&amp;nbsp;&lt;/p&gt;&lt;p&gt;692001 topics with image&lt;/p&gt;&lt;p&gt;626805 topics with 1 image&lt;/p&gt;&lt;p&gt;62827 topics with 2 images&lt;/p&gt;&lt;p&gt;2210 topcis with 3 images&lt;/p&gt;&lt;p&gt;and so on... &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#!/usr/bin/perl&lt;br /&gt;use URI::Escape;&amp;nbsp; &lt;br /&gt;# This module provides the uri_escape function used below&lt;br /&gt;&lt;br /&gt;# Build the Metaweb query, using string manipulation&lt;br /&gt;# CAUTION: the use of string manipulation here makes this script vulnerable&lt;br /&gt;# to MQL injection attacks when the command-line argument includes JSON.&lt;br /&gt;#$band = $ARGV[0]; # This is the band or musician whose albums are to be listed&lt;br /&gt;&lt;br /&gt;my $cursor = 'true';&lt;br /&gt;my $query;&lt;br /&gt;my $pre = &lt;br /&gt;'{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;qname&amp;quot;:{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;cursor&amp;quot;:';&lt;br /&gt;&lt;br /&gt;my $post = ',&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;query&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;limit&amp;quot;:1000,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot;:&amp;quot;/common/topic&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;image&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;return&amp;quot;:&amp;quot;count&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}';&lt;br /&gt;&lt;br /&gt;my $allresult = '';&lt;br /&gt;my $count = 0;&lt;br /&gt;my $result = '';&lt;br /&gt;&lt;br /&gt;until($cursor =~ /error/){&lt;br /&gt;#while($cursor){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $query = $pre . $cursor . $post;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $escaped = uri_escape($query); &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $baseurl='http://www.freebase.com/api/service/mqlread'; # Base URL for queries&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $url = $baseurl . &amp;quot;?queries=&amp;quot; . $escaped;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $auth = 'metaweb-user=###Enter Your cookie data here###';&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #$result = `curl -s --cookie \'$auth\' $url`;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $result = `curl -s $url`;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $result =~ /\/api\/status\/(.*)/;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $status = $1;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $result =~ /cursor\&amp;quot;:\s*(\&amp;quot;.*\&amp;quot;)/;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $cursor = $1;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $count = $count + 1;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print $result . &amp;quot;\n&amp;quot;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;# Use regular expressions to extract the album list from the HTTP response&lt;br /&gt;#$result =~ s/^.*&amp;quot;album&amp;quot;\s*:\s*\[\s*([^\]]*)\].*$/$1/s;&lt;br /&gt;#$result =~ s/[ \t]*&amp;quot;[ \t,]*//g;&lt;br /&gt;#print $allresult .&amp;quot;\n&amp;quot;;&lt;br /&gt;&lt;br /&gt;print 'done'.&amp;quot;\n&amp;quot;;&lt;br /&gt;# Finally, display the list of albums&lt;br /&gt;#print &amp;quot;$result\n&amp;quot;;&lt;br /&gt;#&lt;br /&gt;# vim: ts=2 sw=2</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902ca93</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902ca93" title="Help Center: to get (image) statistics"/>
    <summary type="html">The following is the code I used. Have a look only if you're free. I print out $count to see number...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T22:47:07.0005Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">Well, I got essentially the same results as reported above using &lt;a href="http://sandbox.freebase.com/view/guid/9202a8c04000641f8000000005c79adb"&gt;metaweb.py&lt;/a&gt;.&amp;nbsp; Are you using your own Perl module, or one from our &lt;a href="/view/freebase/metaweb_framework"&gt;API library&lt;/a&gt;?</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902bc6f</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902bc6f" title="Help Center: to get (image) statistics"/>
    <summary type="html">Well, I got essentially the same results as reported above using metaweb.py.&amp;nbsp; Are you using...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T20:34:47.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">Thanks. I counted the number of iteration for the code above and multiply it by 1000 (since I set the limit 1000) to get approximate image count.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009029f2c</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009029f2c" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thanks. I counted the number of iteration for the code above and multiply it by 1000 (since I set...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T15:19:55.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;Some MQL reference material can be found &lt;a href="/view/en/documentation"&gt;here&lt;/a&gt;.&amp;nbsp; I iterated through topics with images and then recorded the number of links there were.&amp;nbsp; Currently, you can't constrain the query to ask it to return topics with exactly &lt;em&gt;n&lt;/em&gt; amount of images.&amp;nbsp; I'm not sure why your results differ so greatly that mine - I'll try to investigate a little more. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027d05</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027d05" title="Help Center: to get (image) statistics"/>
    <summary type="html">Some MQL reference material can be found here.&amp;nbsp; I iterated through topics with images and then...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T05:53:50.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">&lt;p&gt;Thank you. It seems I don't know enough of MQL language; let me know if there's reference other than this website for I don't want to bother you like this.&lt;/p&gt;&lt;p&gt;I use the following code embedded in a perl code to count the number of topics with at least one image, and the result is about 438K--much lower than yours. By the way how to get the number of topics with exactly 1, 2, or 3 images? Can this be requested directly in the query?&lt;/p&gt;&lt;p&gt;{&lt;br /&gt;&amp;nbsp; &amp;quot;qname&amp;quot;:{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;cursor&amp;quot;:&amp;lt;cursor value&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;query&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;limit&amp;quot;:1000,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot;:&amp;quot;/common/topic&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;image&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027b0d</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027b0d" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thank you. It seems I don't know enough of MQL language; let me know if there's reference other...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T05:04:39.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;You can just break the link between an image and a topic and not have the image deleted.&amp;nbsp; Just for fun, I ran a quick analysis:&lt;/p&gt;&lt;p&gt;Found 716008 /common/topic topics with image links (out of ~4 million topics)&lt;br /&gt;650326 have one img&lt;br /&gt;63058 have two imgs&lt;br /&gt;2296 have three imgs&lt;br /&gt;328 have four or more imgs &lt;/p&gt;Note that more than one topic can be linked to the same image.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025ac9</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025ac9" title="Help Center: to get (image) statistics"/>
    <summary type="html">You can just break the link between an image and a topic and not have the image deleted.&amp;nbsp; Just...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T22:31:31.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">Thank you. Then if a /common/image object is not linked to any /common/topic object, why is it there and how can it be presented to end users? Thanks.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025392</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025392" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thank you. Then if a /common/image object is not linked to any /common/topic object, why is it...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T20:54:54.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">No, not necessarily - a /common/image topic may not be linked to a /common/topic topic (for whatever reason).&amp;nbsp; You could use the last query to find out how many images each /common/topic topic has by counting the ids in the &amp;quot;image&amp;quot; clause.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009024d95</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009024d95" title="Help Center: to get (image) statistics"/>
    <summary type="html">No, not necessarily - a /common/image topic may not be linked to a /common/topic topic (for...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T19:06:31.0012Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">&lt;p&gt;Bear in mind also that ids must be unique within a namespace. If catalog numbers are all unique, this isn't a problem. But if they're only unique per label, this might be enormously cumbersome. If I'm reading you right, Chris, I'm seeing a one-namespace-per-label model, which, while theoretically do-able, seems like a vast undertaking.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0d59</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0d59" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Bear in mind also that ids must be unique within a namespace. If catalog numbers are all unique,...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T18:09:02.0012Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">&lt;p&gt;You can make namespaces, such as /user/metaeducation/labels and /user/metaeducation/labels/capitol, with the query editor. Create an instance of /type/namespace and add a key into the parent namespace.&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;type&amp;quot;:&amp;quot;/type/namespace&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;name&amp;quot;:&amp;quot;My Namespace&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;key&amp;quot;:{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;value&amp;quot;:&amp;quot;sample&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;namespace&amp;quot;:&amp;quot;/user/metaeducation&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; },&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;create&amp;quot;:&amp;quot;unless_exists&amp;quot;&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;will create an instance of &lt;em&gt;Namespace&lt;/em&gt; addressable as /user/metaeducation/sample. You can add things to that namespace:&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;id&amp;quot;:&amp;quot;/guid/deadbeefcafebabedeadbabecafebeef&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;key&amp;quot;:{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;value&amp;quot;:&amp;quot;why_dead_beef&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;namespace&amp;quot;:&amp;quot;/user/metaeducation/sample&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;connect&amp;quot;:&amp;quot;insert&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;As for uniqueness of albums: the problem is that MusicBrainz only models releases, not actual albums. We attempt to identify releases of the same albums, but we inevitably miss some as it is an automated process. Duplicate albums should be marked for merge.&amp;nbsp;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0564</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0564" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">You can make namespaces, such as /user/metaeducation/labels and /user/metaeducation/labels/capitol,...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T16:54:33.0012Z</updated>
  </entry><entry>
    <author>
    <name>metaeducation</name>
    <uri>http://www.freebase.com:80/view/user/metaeducation</uri>
  </author>
    <content type="html">&lt;p&gt;Really?&amp;nbsp; This sounds good.&amp;nbsp; How would I go about doing this? &lt;/p&gt;&lt;p&gt;As you probably guessed from our discussion in Music, I'm actually trying to link to albums by catalog #.&amp;nbsp; (Imagine a manufacturer who has several releases of the same album, under different numbers, and would like the links to go to the appropriate Freebase article.&amp;nbsp; So that's what we're looking for.&amp;nbsp; A pretty URL with the catalog number in it, instead of GUID, which takes one to the appropriate page to upload cover art or edit the track info.)&lt;/p&gt;&lt;p&gt;It appears, however, that the albums are not correctly organized right now, since multiple releases of the same album are in Freebase as separate &amp;quot;albums&amp;quot;.&amp;nbsp; I'm worried about how doing the work of properly sorting releases might interfere with synchronizing the data with MusicBrainz... is it better just to let well enough alone? &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef7e8</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef7e8" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Really?&amp;nbsp; This sounds good.&amp;nbsp; How would I go about doing this?  As you probably guessed from...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T14:09:59.0012Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">We&amp;rsquo;ve done this for some properties already, like NAICS industry classification, IMDb IDs for actors and films. You can do it yourself in your own namespace; it might be a bit unwieldy (/user/metaeducation/isbn/0817525766) but it would work. If you come up with a good one we could link it into a shorter place (like /authority/isbn).</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef2fb</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef2fb" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">We&amp;rsquo;ve done this for some properties already, like NAICS industry classification, IMDb IDs for...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T13:05:08.0012Z</updated>
  </entry><entry>
    <author>
    <name>metaeducation</name>
    <uri>http://www.freebase.com:80/view/user/metaeducation</uri>
  </author>
    <content type="html">&lt;p&gt;Hmmm...&lt;/p&gt;&lt;p&gt;Well, if I could spec this, I'd like to be able to form an inbound link to Freebase by providing a property name and a value, and simply get a page to view the article from that.&amp;nbsp; e.g. (&amp;quot;book/book_edition/isbn&amp;quot;, &amp;quot;817525766&amp;quot;)&amp;nbsp; If this does not specify a unique article, then come up with a list of all matches.&lt;/p&gt;It would be trivial for Metaweb to add an API that did this, it's just that once you start putting question marks and such in things it starts to confuse users, e.g.&lt;br /&gt;&lt;p&gt;http://freebase.com/api/view?property=&amp;quot;book/book_edition/isbn&amp;quot;?value=&amp;quot;817525766&amp;quot;&lt;/p&gt;&lt;p&gt;So maybe overloading view (or something otherwise prettier) could be good:&lt;/p&gt;&lt;p&gt;http://freebase.com/view/book/book_edition/isbn=817525766&lt;/p&gt;&lt;p&gt;A key goal would be that when you loaded an article this way, you would not be redirected, but rather see that &amp;quot;pretty&amp;quot; URL in the address bar.&lt;/p&gt;&lt;p&gt;This way pretty links would come from properties of the data, without anyone having to do extra work in disambiguation that hadn't already been done. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fed032</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fed032" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Hmmm... Well, if I could spec this, I'd like to be able to form an inbound link to Freebase by...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T02:51:45.0012Z</updated>
  </entry><entry>
    <author>
    <name>brendan</name>
    <uri>http://www.freebase.com:80/view/user/brendan</uri>
  </author>
    <content type="html">&lt;p&gt;I think freebase has mimicked wikipedia in populating the &amp;quot;/view/en&amp;quot; (i.e. english language) namespace.&amp;nbsp; Clearly, there can be only one leonardo_da_vinci, and that's not a problem in many cases. There are probably many topics in freebase that could be reliably identified by their common name in that space but the freebase staff (who control it) haven't caught up.&amp;nbsp; Perhaps some collaborative feature in this are would be helpful e.g. &amp;quot;suggest a unique name for this topic&amp;quot;, &amp;quot;flag this topic as more deserving of 'john_smith' &amp;quot; :)&lt;/p&gt;&lt;p&gt;your idea of creating other url paths that represent namespaces is fantastic e.g. NYSE stock symbols could be /view/nyse/ge. This could go a long way for providing user readable urls to topics.&lt;/p&gt;&lt;p&gt;I think freebase.com should consider this a pretty hot feature request; it's not possible now. At least, the company could start creating url/namespaces, but allowing users to create (or at least nominate them) should be considered as well. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008feceb2</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008feceb2" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">I think freebase has mimicked wikipedia in populating the &amp;quot;/view/en&amp;quot; (i.e. english...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T01:45:27.0012Z</updated>
  </entry><entry>
    <author>
    <name>metaeducation</name>
    <uri>http://www.freebase.com:80/view/user/metaeducation</uri>
  </author>
    <content type="html">&lt;p&gt;Hi there...&lt;/p&gt;&lt;p&gt;I'm trying to use a &amp;quot;prettier&amp;quot; URL in my application than to the Freebase GUID-based one.&amp;nbsp; Got my hopes up from what I read at http://www.readwriteweb.com/archives/freebase_overview.php &lt;/p&gt;&lt;p&gt;&amp;quot;Each permanent object in the system has a GUID - a unique identifier, something like this: #9202a8c040000064..... The identifier can be used to refer to the object via URL and via queries. In addition to the GUID, there are other ways to refer to the object, for example, http://www.freebase.com/view/en/leonardo_da_vinci. Beyond that, there are even other aliases, for example, you can refer to a public company by its stock ticker symbol. But regardless of the reference, the key point is that you end up with the same, unique node in the system.&amp;quot; &lt;/p&gt;&lt;p&gt;That sounded good, but... how can you do this, besides typing in the stock symbol as an &amp;quot;alias&amp;quot;? &lt;/p&gt;&lt;p&gt;I'd imagine it's very common for a domain to have a property which is generally unique within that space.&amp;nbsp; All things being equal, people would like to see a link with that instead of the GUID.&amp;nbsp; But to have to type it in twice (once as a property and once as an &amp;quot;alias&amp;quot;) seems like the wrong answer.. &lt;/p&gt;&lt;p&gt;There are a lot of cool things in api/* but I haven't found one that would finesse something like this, any pointers?&amp;nbsp; I'm just trying to get a link that will jump to the Freebase page for the topic...based on, say, the ISBN# of a book.&lt;/p&gt; </content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fecbb6</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fecbb6" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Hi there... I'm trying to use a &amp;quot;prettier&amp;quot; URL in my application than to the Freebase GUID...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T00:21:44.0017Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">You can't actually save a view, per se -- you can only save a filter.&amp;nbsp; E.g., if you filtered the view of your type for Domain Specific Language = &amp;quot;yes&amp;quot;, you could save that.&amp;nbsp; However, there is currently a work-around (although I doubt this was intentional and I can't promise that it will be around forever) -- if you click the &amp;quot;filter results&amp;quot; button, a field labeled &amp;quot;save view as&amp;quot; will appear; you can enter a name and save the view without actually running a filter. The saved view will then appear on your homepage (I think), and will have a stable URL.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008e48613</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008e48613" title="Help Center: How do I save a view?"/>
    <summary type="html">You can't actually save a view, per se -- you can only save a filter.&amp;nbsp; E.g., if you filtered...</summary>
    <title>Help Center: How do I save a view?</title>
    <updated>2008-08-13T21:23:03.0000Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">Replied to related post in the Computers domain.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008e48523</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008e48523" title="Help Center: How do I save a view?"/>
    <summary type="html">Replied to related post in the Computers domain. </summary>
    <title>Help Center: How do I save a view?</title>
    <updated>2008-08-13T21:18:11.0012Z</updated>
  </entry><entry>
    <author>
    <name>mlevison</name>
    <uri>http://www.freebase.com:80/view/user/mlevison</uri>
  </author>
    <content type="html">&lt;p&gt;I've created a type: http://www.freebase.com/type/view/user/mlevison/agile_software_development/functional_test_tools and wish to change the properties that visitors will see in the default case (i.e no image, etc). How can I achieve that?&lt;/p&gt;&lt;p&gt;The whole goal of this is to build a repository of &amp;quot;Functional test tools&amp;quot; that users can quickly scan to figure out which tool they need.&lt;/p&gt;&lt;p&gt;As it stands the default view is of no interest.&lt;/p&gt;&lt;p&gt;Confused in Ottawa &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008e48046</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008e48046" title="Help Center: How do I save a view?"/>
    <summary type="html">I've created a type: http://www.freebase.com/type/view/user/mlevison/agile_software_development...</summary>
    <title>Help Center: How do I save a view?</title>
    <updated>2008-08-13T20:53:49.0005Z</updated>
  </entry><entry>
    <author>
    <name>cimm</name>
    <uri>http://www.freebase.com:80/view/user/cimm</uri>
  </author>
    <content type="html">&lt;p&gt;Is it possible to batch update data in Freebase? Or do I need to program this using the API?&amp;nbsp; I know that all locations in Belgium are in the CET time zone so instead of adding these manually I could batch update all locations where country is Belgium and set the time zone to CET. Any hints?&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008db3969</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008db3969" title="Help Center: Batch update data"/>
    <summary type="html">Is it possible to batch update data in Freebase? Or do I need to program this using the API?&amp;nbsp;...</summary>
    <title>Help Center: Batch update data</title>
    <updated>2008-08-05T13:51:50.0018Z</updated>
  </entry><entry>
    <author>
    <name>reut</name>
    <uri>http://www.freebase.com:80/view/user/reut</uri>
  </author>
    <content type="html">&lt;span style="font-size: 10pt; color: #c0504d; font-family: 'Arial','sans-serif'"&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'Arial','sans-serif'"&gt;&lt;font color="#000000"&gt;Hi, &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'Arial','sans-serif'"&gt;&lt;font color="#000000"&gt;This is my first time I'm working with FreeBase, &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'Arial','sans-serif'"&gt;&lt;font color="#000000"&gt;and I'm trying to create WebRequest (Post method)&amp;nbsp;to login/mqlread by vb.net or c#.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size: 10pt; font-family: 'Arial','sans-serif'"&gt;&lt;font color="#000000"&gt;&lt;span style="font-size: 11pt; color: #1f497d; font-family: 'Calibri','sans-serif'"&gt;&lt;p style="margin: 0cm 0cm 0pt; direction: ltr; unicode-bidi: embed; text-align: left" class="MsoNormal"&gt;&lt;font color="#000000"&gt;Can anyone send me a code example that doing this&lt;span style="font-size: 10pt; font-family: 'Arial','sans-serif'"&gt;?&lt;/span&gt;&lt;/font&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'Arial','sans-serif'"&gt;&lt;font color="#000000"&gt;Tx, all.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/p&gt;&lt;/span&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008d6e2c4</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008d6e2c4" title="Help Center: create Post request in .net"/>
    <summary type="html">Hi,  This is my first time I'm working with FreeBase,  and I'm trying to create WebRequest (Post...</summary>
    <title>Help Center: create Post request in .net</title>
    <updated>2008-07-31T10:48:52.0018Z</updated>
  </entry><entry>
    <author>
    <name>skud</name>
    <uri>http://www.freebase.com:80/view/user/skud</uri>
  </author>
    <content type="html">&lt;p&gt;Actually, you can get the queries for most things!  Take a look at this page: http://tinyurl.com/6h28kt -- that's a list of computer games where I've added the "platform" column then filtered on "Xbox 360".&lt;br /&gt;
&lt;br /&gt;
Then click on "Use Results" and then "See the query".&lt;br /&gt;
&lt;br /&gt;
That gives you a MQL query you can use in your own apps or wherever.&lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008c04d95</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008c04d95" title="Help Center: Queries Confusing Me..."/>
    <summary type="html">Actually, you can get the queries for most things! Take a look at this page: http://tinyurl.com...</summary>
    <title>Help Center: Queries Confusing Me...</title>
    <updated>2008-07-15T01:45:27.0000Z</updated>
  </entry><entry>
    <author>
    <name>gmackenz</name>
    <uri>http://www.freebase.com:80/view/user/gmackenz</uri>
  </author>
    <content type="html">&lt;p&gt;http://dev.mqlx.com/~nick/reports/userdetail.html?user=/user/evening&lt;br /&gt;
&lt;br /&gt;
Try it without the escaped "/" as "%2F"&lt;br /&gt;
&lt;br /&gt;
(Its possible this might be a site only accessible internally at Freebase Headquarters?)&lt;br /&gt;
&lt;br /&gt;
Here's a very useful page of tools:&lt;br /&gt;
&lt;br /&gt;
http://www.freebase.com/view/guid/9202a8c04000641f8000000005bbe084&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008bb0ef6</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008bb0ef6" title="Help Center: See my history?"/>
    <summary type="html">http://dev.mqlx.com/~nick/reports/userdetail.html?user=/user/evening
Try it without the escaped "/"...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-11T23:36:52.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;It looks like the client team has already fixed this in our upcoming release - thanks for reporting this, though.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008bb0d90</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008bb0d90" title="Help Center: See my history?"/>
    <summary type="html">It looks like the client team has already fixed this in our upcoming release - thanks for reporting...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-11T23:18:04.0000Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;oops, that didn't paste quite right.  let me try again.&lt;br /&gt;
&lt;br /&gt;
warning&lt;br /&gt;
&lt;br /&gt;
mjt.json_from_js: undefined value is illegal in JSON&lt;br /&gt;
&lt;br /&gt;
error&lt;br /&gt;
&lt;br /&gt;
error&lt;br /&gt;
evaluating codeblock #top&lt;br /&gt;
{"lineNumber":null,"name":"SyntaxError","message":"Expected identifier, string or number","prev_lines":[],"the_line":[[[ERROR: undefined value]]],"next_lines":[]}&lt;br /&gt;
    SyntaxError: Expected identifier, string or number&lt;br /&gt;
           &lt;br /&gt;
---NaN--&gt;  &lt;br /&gt;
&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ba85d2</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ba85d2" title="Help Center: See my history?"/>
    <summary type="html">oops, that didn't paste quite right. let me try again.
warning
mjt.json_from_js: undefined value...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-11T19:15:28.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;This is a different one.  When I go to the link you provided above (http://dev.mqlx.com/~nick/reports/userdetail.html?user=%2Fuser%2Fevening), I get a warning and error.  I've copied it below.&lt;br /&gt;
&lt;br /&gt;
warning&lt;br /&gt;
mjt.json_from_js: undefined value is illegal in JSONerror&lt;br /&gt;
errorevaluating codeblock #top{"lineNumber":null,"name":"SyntaxError","message":"Expected identifier, string or number","prev_lines":[],"the_line":[[[ERROR: undefined value]]],"next_lines":[]}&lt;br /&gt;
    SyntaxError: Expected identifier, string or number&lt;br /&gt;
           &lt;br /&gt;
---NaN--&gt;  &lt;br /&gt;
&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ba85ba</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ba85ba" title="Help Center: See my history?"/>
    <summary type="html">This is a different one. When I go to the link you provided above (http://dev.mqlx.com/~nick...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-11T19:14:19.0000Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;Is this a different error than the one you reported earlier?  If so, could you provide more details?&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ba3c6b</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ba3c6b" title="Help Center: See my history?"/>
    <summary type="html">Is this a different error than the one you reported earlier? If so, could you provide more details?...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-11T02:21:49.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;FYI, looks like there is an error on the userdetail report&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008b9585f</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008b9585f" title="Help Center: See my history?"/>
    <summary type="html">FYI, looks like there is an error on the userdetail report </summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-10T17:41:47.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;Thanks!&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008b9583f</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008b9583f" title="Help Center: See my history?"/>
    <summary type="html">Thanks! </summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-10T17:40:38.0005Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;I've been told that this has been fixed in the upcoming release.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ac06d3</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ac06d3" title="Help Center: See my history?"/>
    <summary type="html">I've been told that this has been fixed in the upcoming release. </summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-08T20:36:13.0001Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;Hmmm, seems like you may have stumbled on to a regression.  I'll file an internal bug, but in the meantime, you can try this URL: http://dev.mqlx.com/~nick/reports/userdetail.html?user=%2Fuser%2Fevening&lt;br /&gt;
&lt;br /&gt;
Thanks for reporting this!&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008aa7875</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008aa7875" title="Help Center: See my history?"/>
    <summary type="html">Hmmm, seems like you may have stumbled on to a regression. I'll file an internal bug, but in the...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-08T19:27:50.0044Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Is there a way to see my entire activty history?&amp;nbsp; I added some stuff yesterday with the plan to go back and fill in data, but now I'm not sure if I remembered all that I added :)&amp;nbsp; And the history in my user account doesn't go back far enough (not even the expanded view).&amp;nbsp; &lt;/p&gt;&lt;p&gt;Is there a way to see this kind of info?&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008a6c6b4</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008a6c6b4" title="Help Center: See my history?"/>
    <summary type="html">Is there a way to see my entire activty history?&amp;nbsp; I added some stuff yesterday with the plan...</summary>
    <title>Help Center: See my history?</title>
    <updated>2008-07-08T15:27:40.0005Z</updated>
  </entry><entry>
    <author>
    <name>willmoffat</name>
    <uri>http://www.freebase.com:80/view/user/willmoffat</uri>
  </author>
    <content type="html">&lt;p&gt;Hi zwit, have you read the latest version of the &lt;a href="http://markmail.org/message/ewxqkciftxe6m7tn"&gt;MQL&lt;/a&gt; tutorial? I think it should cover what you're trying to do. If not, ask for more help.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008790688</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008790688" title="Help Center: selecting unknown properties"/>
    <summary type="html">Hi zwit, have you read the latest version of the MQL tutorial? I think it should cover what you're...</summary>
    <title>Help Center: selecting unknown properties</title>
    <updated>2008-06-30T10:46:02.0000Z</updated>
  </entry><entry>
    <author>
    <name>zwit</name>
    <uri>http://www.freebase.com:80/view/user/zwit</uri>
  </author>
    <content type="html">&lt;p&gt;ok but here's a new problem with that approach:&lt;br /&gt;
"/type/reflect/any_master" : [&lt;br /&gt;
      {&lt;br /&gt;
        "*" : null,&lt;br /&gt;
        "link" : null,&lt;br /&gt;
        "name" : null,&lt;br /&gt;
        "type" : []&lt;br /&gt;
      }&lt;br /&gt;
    ]&lt;br /&gt;
will for instance give me lots of records I don't want. I need to filter it by type, but I can't seem to find any syntax for that. exclusion operators don't work on ids so I can't say "type": [ "id~=":"/type/permission" ] or whatever it would be. Any way to do this in the query?&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000879044d</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000879044d" title="Help Center: selecting unknown properties"/>
    <summary type="html">ok but here's a new problem with that approach:
"/type/reflect/any_master" : [
 {
 "*" ...</summary>
    <title>Help Center: selecting unknown properties</title>
    <updated>2008-06-30T09:20:01.0000Z</updated>
  </entry><entry>
    <author>
    <name>zwit</name>
    <uri>http://www.freebase.com:80/view/user/zwit</uri>
  </author>
    <content type="html">&lt;p&gt;Ok i found it!&lt;br /&gt;
[&lt;br /&gt;
  {&lt;br /&gt;
    "/type/reflect/any_master" : [&lt;br /&gt;
      {&lt;br /&gt;
        "id" : null,&lt;br /&gt;
        "link" : null,&lt;br /&gt;
        "name" : null,&lt;br /&gt;
        "type" : []&lt;br /&gt;
      }&lt;br /&gt;
    ],&lt;br /&gt;
    "/type/reflect/any_reverse" : [&lt;br /&gt;
      {&lt;br /&gt;
        "id" : null,&lt;br /&gt;
        "link" : null,&lt;br /&gt;
        "name" : null,&lt;br /&gt;
        "type" : []&lt;br /&gt;
      }&lt;br /&gt;
    ],&lt;br /&gt;
    "/type/reflect/any_value" : [&lt;br /&gt;
      {&lt;br /&gt;
        "link" : null,&lt;br /&gt;
        "type" : null,&lt;br /&gt;
        "value" : null&lt;br /&gt;
      }&lt;br /&gt;
    ],&lt;br /&gt;
    "id" : whatever&lt;br /&gt;
  }&lt;br /&gt;
]&lt;br /&gt;
awesome!&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000878f357</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000878f357" title="Help Center: selecting unknown properties"/>
    <summary type="html">Ok i found it!
[
 {
 "/type/reflect/any_master" : [
 {
 "id" : null,
 "link"...</summary>
    <title>Help Center: selecting unknown properties</title>
    <updated>2008-06-30T04:53:29.0005Z</updated>
  </entry><entry>
    <author>
    <name>zwit</name>
    <uri>http://www.freebase.com:80/view/user/zwit</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Hi I'm sure this exists somewhere in all the docs available but I haven't been able to find it; I am building an app which treats freebase as a graph and therefore needs a query which treats records as nodes with arbitrary properties. This is more or less the functionality of the freebase search function. If I select the /common/topic &amp;quot;norway&amp;quot;, I need a query which will return all its properties, and somehow give me the ids of all its related objects (location, country, governmental jurisdiction etc) so that I can do the same thing on them.&lt;/p&gt;&lt;p&gt;All of the MQL examples focus on getting defined, very restricted sets of data so I'm not really sure how to go about this.&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000878ecfd</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000878ecfd" title="Help Center: selecting unknown properties"/>
    <summary type="html">Hi I'm sure this exists somewhere in all the docs available but I haven't been able to find it; I...</summary>
    <title>Help Center: selecting unknown properties</title>
    <updated>2008-06-30T02:19:55.0005Z</updated>
  </entry><entry>
    <author>
    <name>zwit</name>
    <uri>http://www.freebase.com:80/view/user/zwit</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Hi I'm sure this exists somewhere in all the docs available but I haven't been able to find it; I am building an app which treats freebase as a graph and therefore needs a query which treats records as nodes with arbitrary properties. This is more or less the functionality of the freebase search function. If I select the /common/topic &amp;quot;norway&amp;quot;, I need a query which will return all its properties, and somehow give me the ids of all its related objects (location, country, governmental jurisdiction etc) so that I can do the same thing on them.&lt;/p&gt;&lt;p&gt;All of the MQL examples focus on getting defined, very restricted sets of data so I'm not really sure how to go about this.&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000878ece3</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000878ece3" title="Help Center: selecting unknown properties"/>
    <summary type="html">Hi I'm sure this exists somewhere in all the docs available but I haven't been able to find it; I...</summary>
    <title>Help Center: selecting unknown properties</title>
    <updated>2008-06-30T02:18:02.0005Z</updated>
  </entry><entry>
    <author>
    <name>alienzero</name>
    <uri>http://www.freebase.com:80/view/user/alienzero</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Is it possible to perform multiple search request, i.e. doing several&amp;nbsp;http://www.freebase.com/api/service/search?limit=1&amp;amp;query=Embassy with just one mqlread? Something along the lines of:&lt;/p&gt;&lt;p&gt;http://www.freebase.com/api/service/mqlread?queries={&amp;quot;q0&amp;quot;:{&amp;quot;query&amp;quot;: {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;domain&amp;quot;: null,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;surrounds_strict&amp;quot;: &amp;quot;any&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;type_strict&amp;quot;: &amp;quot;all&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;surrounds&amp;quot;: [],&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;mql_filter&amp;quot;: null,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;explain&amp;quot;: false,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;error_inside&amp;quot;: &amp;quot;.&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;blacklist&amp;quot;: [],&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;start&amp;quot;: 0,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;prefix&amp;quot;: &amp;quot;&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;limit&amp;quot;: 1,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;escape&amp;quot;: &amp;quot;html&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;query&amp;quot;: &amp;quot;Dutch&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;type&amp;quot;: [],&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;strict&amp;quot;: &amp;quot;all&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;}},&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;q1&amp;quot;:{&amp;quot;query&amp;quot;: {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;domain&amp;quot;: null,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;surrounds_strict&amp;quot;: &amp;quot;any&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;type_strict&amp;quot;: &amp;quot;all&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;surrounds&amp;quot;: [],&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;mql_filter&amp;quot;: null,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;explain&amp;quot;: false,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;error_inside&amp;quot;: &amp;quot;.&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;blacklist&amp;quot;: [],&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;start&amp;quot;: 0,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;prefix&amp;quot;: &amp;quot;&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;limit&amp;quot;: 1,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;escape&amp;quot;: &amp;quot;html&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;query&amp;quot;: &amp;quot;Embassy&amp;quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;type&amp;quot;: [],&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;strict&amp;quot;: &amp;quot;all&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;}}}&amp;nbsp;&lt;/p&gt;&lt;p&gt;?&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000086eaa62</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000086eaa62" title="Help Center: Multiple search queries with one http request?"/>
    <summary type="html">Is it possible to perform multiple search request, i.e. doing several&amp;nbsp;http://www.freebase.com...</summary>
    <title>Help Center: Multiple search queries with one http request?</title>
    <updated>2008-06-24T23:12:22.0012Z</updated>
  </entry><entry>
    <author>
    <name>ultra</name>
    <uri>http://www.freebase.com:80/view/user/ultra</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;I agree with the last statement.&amp;nbsp; I was wondering exactly the same thing.&lt;/p&gt;&lt;p&gt;&amp;quot;Why not show, on the site, the query used to generate the data on the page?&amp;quot; &lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000738f7be</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000738f7be" title="Help Center: Queries Confusing Me..."/>
    <summary type="html">I agree with the last statement.&amp;nbsp; I was wondering exactly the same thing. &amp;quot;Why not show,...</summary>
    <title>Help Center: Queries Confusing Me...</title>
    <updated>2008-02-16T18:41:31.0007Z</updated>
  </entry><entry>
    <author>
    <name>darthmahon</name>
    <uri>http://www.freebase.com:80/view/user/darthmahon</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Thanks for the reply. I do have a suggestion/question though for the site in general. Why not show, on the site, the query used to generate the data on the page?&lt;/p&gt;&lt;p&gt;&amp;nbsp;For example, this page:&amp;nbsp;http://www.freebase.com/view/reorder/topic/en/xbox_360?propertyId=%2Fcvg%2Fcvg_platform%2Fgames_on_this_platform&amp;amp;returnUrl=http%3A%2F%2Fwww.freebase.com%2Fview%2Fxbox_360&lt;/p&gt;&lt;p&gt;It would be good to see the query used to generate all of those results and would make it easier for people to get to grips with it.&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000006e80bcb</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000006e80bcb" title="Help Center: Queries Confusing Me..."/>
    <summary type="html">Thanks for the reply. I do have a suggestion/question though for the site in general. Why not show,...</summary>
    <title>Help Center: Queries Confusing Me...</title>
    <updated>2007-12-31T12:38:33.0000Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Chris, &lt;a href="/view/schema/cvg/cvg_platform" title="Computer Game Platform : Freebase"&gt;the platform schema&lt;/a&gt; shows that the “Games” property is hidden and deprecated; what you want is the “Games On This Platform” property (&lt;code&gt;games_on_this_platform&lt;/code&gt;) instead. Keep in mind that that property points to a compound value type, so you will then need to ask for the &lt;code&gt;game&lt;/code&gt; property of that.&lt;/p&gt;&lt;pre&gt;{&lt;br /&gt;
  "query":{&lt;br /&gt;
    "games_on_this_platform":[{&lt;br /&gt;
      "game":null&lt;br /&gt;
    }],&lt;br /&gt;
    "name":"Xbox 360",&lt;br /&gt;
    "type":"/cvg/cvg_platform"&lt;br /&gt;
  }&lt;br /&gt;
}&lt;/pre&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000006093868</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000006093868" title="Help Center: Queries Confusing Me..."/>
    <summary type="html">Chris, the platform schema shows that the “Games” property is hidden and deprecated; what you want...</summary>
    <title>Help Center: Queries Confusing Me...</title>
    <updated>2007-11-20T04:12:28.0029Z</updated>
  </entry><entry>
    <author>
    <name>darthmahon</name>
    <uri>http://www.freebase.com:80/view/user/darthmahon</uri>
  </author>
    <content type="html">&lt;p&gt;Hi Guys,&lt;br /&gt;
&lt;br /&gt;
I'm trying to do what I think is a basic query but I can't get my head around how to do this using MQL.&lt;br /&gt;
&lt;br /&gt;
Basically I want to get a list of all games on the Xbox 360 - I've managed this so far:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
  "query":{&lt;br /&gt;
&lt;br /&gt;
    "games":[],&lt;br /&gt;
&lt;br /&gt;
    "name":"Xbox 360",&lt;br /&gt;
&lt;br /&gt;
    "type":"/cvg/cvg_platform"&lt;br /&gt;
&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
Now this returns 2 results, nothing like I was expecting. Anyone know what I am doing wrong?&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
Chris&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000005fe9013</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000005fe9013" title="Help Center: Queries Confusing Me..."/>
    <summary type="html">Hi Guys,
I'm trying to do what I think is a basic query but I can't get my head around how to do...</summary>
    <title>Help Center: Queries Confusing Me...</title>
    <updated>2007-11-16T17:50:15.0005Z</updated>
  </entry>
</feed>