@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://example.com/ontology1#> .
:Person rdf:type owl:Class .
:Jack rdf:type :Person .
prefix : <http://example.com/ontology1#>
select ?s ?p ?o
where {
?s a :Person .
?o a owl:Class .
?s ?p ?o .
}
--- Renars
-- --
You received this message because you are subscribed to the C&P "Stardog" group.
To post to this group, send email to sta...@clarkparsia.com
To unsubscribe from this group, send email to
stardog+u...@clarkparsia.com
For more options, visit this group at
http://groups.google.com/a/clarkparsia.com/group/stardog?hl=en
Yes, it's a complete example. By the "query does not finish", I mean that the blue progress bar animation keeps going, but no results are shown (screenshot in attachment).I'm using Stardog 2.1.3.
java.util.ConcurrentModificationException
./bin/stardog query test2 "prefix : <http://example.com/ontology1#> select ?s ?p ?o where { ?s a :Person . ?o a owl:Class . ?s ?p ?o . }"
./bin/stardog query test2 "prefix : <http://example.com/ontology1#> select ?s ?p ?o where { ?s a :Person . ?s ?p ?o . }"+-----------------------------------+----------+-------------------------------------+| s | p | o |+-----------------------------------+----------+-------------------------------------+| http://example.com/ontology1#Jack | rdf:type | http://example.com/ontology1#Person |+-----------------------------------+----------+-------------------------------------+
--
java version "1.8.0_20-ea"Java(TM) SE Runtime Environment (build 1.8.0_20-ea-b05)Java HotSpot(TM) 64-Bit Server VM (build 25.20-b05, mixed mode)