--
You received this message because you are subscribed to the Google Groups "Getty Vocabularies as Linked Open Data" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gettyvocablo...@googlegroups.com.
To post to this group, send email to gettyv...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gettyvocablod/535bd79d-649e-40e3-9530-deba88350ba6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX gvp: <http://vocab.getty.edu/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?focus ?biographyPreferred ?birthPlace ?deathPlace ?dPlace WHERE {
{
?person foaf:focus ?focus.
?focus gvp:biographyPreferred ?biographyPreferred.
?biographyPreferred schema:birthPlace ?birthPlace.
?biographyPreferred schema:deathPlace ?deathPlace.
}
SERVICE <http://vocab.getty.edu/sparql> {
?dPlace foaf:focus ?deathPlace .
}
FILTER(?person = <http://vocab.getty.edu/ulan/500010879>)
}
Charan,
Why you do need to call out that specific criterion as a separate service call? I simplified your search to:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX gvp: <http://vocab.getty.edu/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?focus ?biographyPreferred ?birthPlace ?deathPlace ?dPlace
WHERE {
{
?person foaf:focus ?focus.
?focus gvp:biographyPreferred ?biographyPreferred.
?biographyPreferred schema:birthPlace ?birthPlace.
?biographyPreferred schema:deathPlace ?deathPlace.
?dPlace foaf:focus ?deathPlace .
}
FILTER(?person = <http://vocab.getty.edu/ulan/500010879>)
}
and it returned a result immediately. Are you searching other endpoints as well, and if so where are you performing the [federated] search?
Richard
To view this discussion on the web visit https://groups.google.com/d/msgid/gettyvocablod/ef628856-c027-4d02-bc5b-9b23706caee5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I have a metaphacts instance which has the ULAN vocab imported. I do not have enough space to import the TGN, hence trying to query remotely to get the name of the place.
To view this discussion on the web visit https://groups.google.com/d/msgid/gettyvocablod/c014e5fd-96e5-413e-a8d3-5269a614d4eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Good call, Kevin: thank you for pointing that out.
.