- From: Richard Newman <rnewman@franz.com>
- Date: Tue, 23 Jun 2009 11:17:27 -0700
- To: Samuel Pedro <samuelcpspam@gmail.com>
- Cc: public-sparql-dev@w3.org
On 23 Jun 2009, at 11:10 AM, Samuel Pedro wrote:
> Why this query doens't return any result with jena and with protege
> does??
Presumably because Protege considers
x y "foo"^^xsd:string
to entail
x y "foo"
while Jena does not?
Try your query as
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?equivalentClass
WHERE {
?equivalentClass owl:equivalentClass ?Class .
?Class rdfs:label "champinhons"^^xsd:string
}
Received on Tuesday, 23 June 2009 18:18:11 UTC