Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 514 Bytes

query.markdown

File metadata and controls

34 lines (22 loc) · 514 Bytes
layout title permalink
page
SPARQL* Queries
/query/

SPARQL*


prefix onto:<http://www.ontotext.com/>

select ?subject ?predicate ?object

{
    ?subject a <http://www.mysemantics.com/ontology/trip/SightSeeing> .
    ?subject ?predicate ?object.
}

Alt text


### Trip ###
:Trip rdf:type owl:Class ;
        rdfs:label "Reisen"@de ,
                "Trip"@en ;
        rdfs:comment "Any type of movement between two locations."@en .