Skip to content
Snippets Groups Projects
Commit c483b96d authored by oyvind's avatar oyvind
Browse files

bibsys

parent b6090e99
No related branches found
No related tags found
No related merge requests found
SELECT ?uri ?label ?created WHERE {
?uri <http://purl.org/dc/elements/1.1/identifier> "{{first.main.bibsysid.value}}" .
?uri <http://purl.org/dc/elements/1.1/title> ?label .
OPTIONAL { ?uri <http://purl.org/dc/elements/1.1/issued> ?created . }
}
\ No newline at end of file
SELECT DISTINCT ?maker ?makerName WHERE {
?uri <http://purl.org/dc/elements/1.1/identifier> "{{first.main.bibsysid.value}}" .
?uri dc:creator ?maker .
?maker foaf:name ?makerName .
}
\ No newline at end of file
SELECT DISTINCT ?uri ?label WHERE {
?s <http://purl.org/dc/elements/1.1/identifier> "{{first.main.bibsysid.value}}" .
?s dc:subject ?uri .
OPTIONAL { ?uri skos:prefLabel ?label . }
OPTIONAL { ?uri foaf:name ?label . }
}
\ No newline at end of file
SELECT DISTINCT ?uri ?label ?description ?logo WHERE {
GRAPH <urn:x-arq:UnionGraph> {
<{{ uri }}> dct:relation ?uri .
OPTIONAL { ?uri dct:title ?label . }
OPTIONAL { ?uri rdfs:label ?label .}
OPTIONAL { ?uri foaf:name ?label .}
OPTIONAL { ?uri dct:description ?description .}
OPTIONAL { ?uri foaf:logo ?logo .}
FILTER NOT EXISTS {
?subclass (rdfs:subClassOf)* dct:Image .
?uri rdf:type ?subclass
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment