Hi, I got exception error thrown out as
QueryEval: Logical service query cannot be evaluated
when I am trying to query from virtual graph and join with another sparql endpoint using service.
Is this type of query not supported by Stardog?
Query:
SELECT ?child ?name ?lei ?country ?city ?street ?type ?ultiparent
{
graph <virtual://db1> {
?ultiparent ^relationship:UltimateParent ?child;
party:hasName "Everest Re Group, Ltd." .
?child party:hasName ?name .
?child ^relationship:hasChild ?Relation.
?Relation relationship:hasParent ?directparent.
?directparent party:hasName ?directparentname .
?Relation a ?type.
optional {
{
?child owl:sameAs ?lei.
{
SERVICE <https://lei.info/sparql> {
GRAPH ?g {
?lei voc-l1:legalName ?legalName .
?lei voc-l1:legalAddress ?legalAddress .
?legalAddress voc-l1:country ?country .
?legalAddress voc-l1:city ?city .
?legalAddress voc-l1:streetAddress ?street .
?legalAddress voc-l1:postalCode ?postalCode .
}
}
}
}
}
}
}