I'm making an sparql query using pellet and I'm getting different results according to the order of the triples in the query, it's that correct?
For example, given the following N-Triples data input:
<http://example.com/thing1> <http://example.com/hasDefinition> <http://example.com/def_thing1> .
<http://example.com/thing1> <http://www.w3.org/2000/01/rdf-schema#label> "Thing 1" .
<http://example.com/def_thing1> <http://www.w3.org/2000/01/rdf-schema#comment> "thing 1 it's awesome".
<http://example.com/thing2> <http://example.com/hasDefinition> <http://example.com/def_thing2> .
<http://example.com/thing2> <http://www.w3.org/2000/01/rdf-schema#label> "Thing 2" .
<http://example.com/def_thing2> <http://www.w3.org/2000/01/rdf-schema#comment> "thing 1 it's cool".
<http://example.com/thing3> <http://example.com/hasDefinition> <http://example.com/def_thing3> .
<http://example.com/thing3> <http://www.w3.org/2000/01/rdf-schema#label> "Thing 3" .
<http://example.com/def_thing3> <http://www.w3.org/2000/01/rdf-schema#comment> "thing 3 it's fine".
<http://example.com/thing4> <http://example.com/hasDefinition> <http://example.com/def_thing4> .
<http://example.com/thing4> <http://www.w3.org/2000/01/rdf-schema#label> "Thing 4" .
<http://example.com/def_thing4> <http://www.w3.org/2000/01/rdf-schema#comment> "thing 4 it's exactly what i need".
The following query:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX example: <http://example.com/>
SELECT * WHERE {
?thing ?rel "Thing 4".
?thing example:hasDefinition ?def.
?def rdfs:comment ?definition.
}
Returns:
Query Results (1 answers):
thing | rel | def | definition
================================================================
thing4 | label | def_thing4 | "thing 4 it's exactly what i need"
But the following query (just an alteration of the previous one):
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX example: <http://example.com/>
SELECT * WHERE {
?thing example:hasDefinition ?def.
?def rdfs:comment ?definition.
?thing ?rel "Thing 4".
}
I get the following answer:
Query Results (5 answers):
thing | def | definition | rel
==============================================================================
thing4 | def_thing4 | "thing 4 it's exactly what i need" | _TOP_DATA_PROPERTY_
thing4 | def_thing4 | "thing 4 it's exactly what i need" | label
thing1 | def_thing1 | "thing 1 it's awesome" | _TOP_DATA_PROPERTY_
thing2 | def_thing2 | "thing 1 it's cool" | _TOP_DATA_PROPERTY_
thing3 | def_thing3 | "thing 3 it's fine" | _TOP_DATA_PROPERTY_
I didn't expect this behaviour and I don't know if it's correct and I'm the one making the wrong query. Can anyone explain this to me?