This page allows you to lodge SPARQL queries against a triplestore which acts as a cached graph of the data from the point-of-truth G-NAF database.
Here is an example query you can copy 'n paste into the text area below to do a count of the Address objects within the cached graph. It should be the same number as within the GNAF point-of-truth database:
PREFIX gnaf: <http://linked.data.gov.au/def/gnaf#>
SELECT ?s
WHERE {
?s a gnaf:Address .
}
LIMIT 50
See the complete documentation for this SPARQL service at the source code's SPARQL docs page.