Skip to content

Instantly share code, notes, and snippets.

@boutros
Created June 17, 2014 09:01
Show Gist options
  • Save boutros/832520c7f3623993d30a to your computer and use it in GitHub Desktop.
Save boutros/832520c7f3623993d30a to your computer and use it in GitHub Desktop.
generate displayLabel
CONSTRUCT {
?person <armillaria://internal/displayLabel> ?label
}
WHERE {
?person a foaf:Person ;
foaf:name ?name .
OPTIONAL { ?person <http://data.deichman.no/lifespan> ?lifespan }
BIND( IF(bound(?lifespan), concat(?name, " (", ?lifespan, ")"), ?name) AS ?label)
} LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment