query-5baa261775f27b345429d1ff6ed4e4ea
UG Space Collections
SELECT ?item ?itemLabel ?publicationdate ?publishedinLabel ?volume ?issue ?fullworkurl ?exactmatch (group_concat(distinct ?authorLabel; separator=", ") as ?authors) (group_concat(distinct ?subjectLabel; separator=", ") as ?mainsubjects) WHERE { ?item wdt:P8602 ?University_of_Ghana_Digital_Collections__UGSpace__ID. ?item wdt:P921 ?subject . ?item wdt:P2093 ?author . ?item wdt:P577 ?publicationdate . ?item wdt:P1433 ?publishedin . ?item wdt:P2888 ?exactmatch . OPTIONAL {?item wdt:P478 ?volume .} OPTIONAL {?item wdt:P433 ?issue .} OPTIONAL {?item wdt:P953 ?fullworkurl .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". ?item rdfs:label ?itemLabel. ?publishedin rdfs:label ?publishedinLabel. ?author rdfs:label ?authorLabel. ?subject rdfs:label ?subjectLabel. } } GROUP BY ?item ?itemLabel ?publicationdate ?publishedinLabel ?volume ?issue ?fullworkurl ?exactmatch LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#UG Space Collections
SELECT ?item ?itemLabel ?publicationdate ?publishedinLabel ?volume ?issue ?fullworkurl ?exactmatch
(group_concat(distinct ?authorLabel; separator=", ") as ?authors)
(group_concat(distinct ?subjectLabel; separator=", ") as ?mainsubjects)
WHERE {
?item wdt:P8602 ?University_of_Ghana_Digital_Collections__UGSpace__ID.
?item wdt:P921 ?subject .
?item wdt:P2093 ?author .
?item wdt:P577 ?publicationdate .
?item wdt:P1433 ?publishedin .
?item wdt:P2888 ?exactmatch .
OPTIONAL {?item wdt:P478 ?volume .}
OPTIONAL {?item wdt:P433 ?issue .}
OPTIONAL {?item wdt:P953 ?fullworkurl .}
SERVICE wikibase:label
{
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?item rdfs:label ?itemLabel.
?publishedin rdfs:label ?publishedinLabel.
?author rdfs:label ?authorLabel.
?subject rdfs:label ?subjectLabel.
}
}
GROUP BY ?item ?itemLabel ?publicationdate ?publishedinLabel ?volume ?issue ?fullworkurl ?exactmatch
LIMIT 100