--- a/paq/working/prov-aq.html Thu May 03 13:13:16 2012 -0400
+++ b/paq/working/prov-aq.html Thu May 03 18:22:36 2012 +0100
@@ -635,13 +635,9 @@
If the original resource has a URI <code>http://example.org/resource</code>, a SPARQL query for provenance information might look like this:
<pre class="example code">
@prefix prov: <<provns/>>
- CONSTRUCT
- {
- <http://example.org/resource> ?p ?v
- }
- WHERE
- {
- <http://example.org/resource> ?p ?v
+ SELECT ?generationStartTime WHERE {
+ <http://example.org/resource> prov:wasGeneratedBy ?activity .
+ ?activity prov:startedAtTime ?generationStartTime .
}
</pre>
</p>