- From: Andy Seaborne <andy@apache.org>
- Date: Mon, 4 Jan 2021 10:52:37 +0000
- To: public-rdf-star@w3.org
Reply:
https://lists.apache.org/thread.html/r6699df184306a9079bd24e6a0a80537b430e995d9a3d3de1a9d2438d%40%3Cusers.jena.apache.org%3E
This has been discussed on this list around
https://lists.w3.org/Archives/Public/public-rdf-star/2020Jun/0006.html
RDF-star gives the building block(triple terms, <<>>) it does not
necessarily address every usecase directly, somestimes it needs
structure on top of the building block (this is true in RDF generally).
Andy
On 03/01/2021 18:05, Laura Morales wrote:
> In property graphs it's possible to use a relation multiple times, for example
>
> Foobar -[president_of {from: 1950, to:1954}]-> Japan
> Foobar -[president_of {from: 1962, to:1966}]-> Japan
>
> where "from" and "to" are to properties of the "president_of" relation. This is an old problem that has always remained impossible to translate to RDF. In RDF there is only one relation, one "link" from a node to another. There cannot be 2 different relations with the same name.
> I wonder, does RDF* change anything in regard to this behavior? I guess it does not but... I'd still like to ask anyway. For example the following Turtle* will not achieve that, right?
>
> << :foobar :president_of :japan >> from: 1950 ; to: 1954 .
> << :foobar :president_of :japan >> from: 1962 ; to: 1966 .
>
> :president_of is always the same one relation, correct?
>
>
Received on Monday, 4 January 2021 10:52:52 UTC