- From: Andy Seaborne <andy@apache.org>
- Date: Thu, 5 Oct 2023 20:17:28 +0100
- To: public-rdf-star-wg@w3.org
On 05/10/2023 13:02, Niklas Lindström wrote:
> I have written a follow-up (ttled "Prerequisites and Requirements for
> Quotation in RDF") to explore some fundamental questions raised by
> these proposals:
>
> https://gist.github.com/niklasl/c22994e664663b6730613ecc1321c418
>
> I look forward to analyzing this further with you.
>
> All the best,
> Niklas
Data:
_:g1 { :s1 :p1 :o1 }
_:g2 { :s2 :p2 :o2 }
_:g1 dc:created "2023-05-20T09:14:30Z"^^xsd:dateTime .
Query: find all the graphs that were created at xsd datetime.
SELECT * {
?x dc:created "2023-05-20T09:14:30Z"^^xsd:dateTime .
}
Result:
?x = _:blank123456789
which isn't very useful to go on and ask questions about the graphs as
might be done by a UI RDF browser.
Andy
Received on Thursday, 5 October 2023 19:17:36 UTC