Skip to content

Does flint support rdf*? #40

@akond

Description

@akond

TURTLE allows RDF* syntax:

@prefix ex: <http://example.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ex:Alice ex:knows ex:Bob .

<< ex:Alice ex:knows ex:Bob >> 
    ex:certainty "0.9"^^xsd:float ;
    ex:source ex:LinkedIn .

and Apache Jena has support for SPARQL*:

PREFIX ex: <http://example.org/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

SELECT ?certainty ?source
WHERE {
     << ex:Alice ex:knows ex:Bob >> ex:certainty ?certainty ;
     ex:source ?source .
}

but i can't seem to find a way to do the same with flint.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions