PREFIX dbo:
PREFIX schema:
PREFIX ado:
PREFIX ex:
construct {
?agent a ?type ;
schema:name ?name ;
schema:url ?url ;
schema:addressCountry ?country ;
schema:sameAs ?artsdata_uri ;
schema:additionalType ?is_flagged_for_review .
}
where {
?agent a dbo:Agent .
graph {
?agent a ?type ;
schema:name ?name .
OPTIONAL {
?agent schema:url ?url .
}
OPTIONAL {
?agent schema:location/schema:address/schema:addressCountry ?country .
}
OPTIONAL {
?agent schema:workLocation/schema:address/schema:addressCountry ?country .
}
}
OPTIONAL {
graph {
?agent schema:sameAs ?artsdata_uri .
}
}
OPTIONAL {
graph {
?agent schema:additionalType ado:FlaggedForReview
BIND(true as ?is_flagged_for_review)
}
}
} limit 10 offset 0