You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When multiple nested attributes exits (e.g. p.phone.number and p.phone.brand), they both generate the same triple ?x <http://krizik.felk.cvut.cz/ontologies/jopa/attributes#hasPhone> ?phone .
While this should not have any performance impacts, because the SPARQL Parser should optimize the SPARQL query, it makes debugging the generated SPARQL harder and also leads to more traffic having to be send to the database.
The text was updated successfully, but these errors were encountered:
When SOQL is translated into SPARQL, duplicate graph patterns can be generated:
When multiple nested attributes exits (e.g.
p.phone.number
andp.phone.brand
), they both generate the same triple?x <http://krizik.felk.cvut.cz/ontologies/jopa/attributes#hasPhone> ?phone .
While this should not have any performance impacts, because the SPARQL Parser should optimize the SPARQL query, it makes debugging the generated SPARQL harder and also leads to more traffic having to be send to the database.
The text was updated successfully, but these errors were encountered: