query-6cf57e6880974a4e9f995fb7af92629a

rq turtle/ttl

Bibliographische MetadatenIn drei Wiki-Projekten wird ein guter Überblick über Datenmodelle und strategische Ideen rund um die Erfassung bibliographischer Metadaten geboten. Project zur Katalogisierung von ZeitschriftenWikiProject Periodicals Project zur Katalogisierung von BüchernWikiProject Books - Project mit Schwerpunkt auf wissenschaftliche Artikel.WikiProject Source MetaDataAbfrage nach ausgewählten Identifikatoren bibliographischer Datenbanken

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?BibIDLabel (COUNT(DISTINCT ?s) AS ?anzahl) WHERE {

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  VALUES (?BibIdentifier) {
    (wdt:P6201) #AC-Nummer
    (wdt:P1292) #DNB-ID
    (wdt:P1044) #SWB-ID
    (wdt:P4109) #URN
  }
  ?s ?BibIdentifier ?o.
  ?BibID wikibase:directClaim ?BibIdentifier.
}
GROUP BY ?BibIDLabel
ORDER BY DESC(?anzahl)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?BibID") v2("?BibIdentifier") v6("?anzahl") v4("?o") v3("?s"):::projected c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end bind0[/VALUES ?BibIdentifier/] bind0-->v2 bind00(["wdt:P6201"]) bind00 --> bind0 bind01(["wdt:P1292"]) bind01 --> bind0 bind02(["wdt:P1044"]) bind02 --> bind0 bind03(["wdt:P4109"]) bind03 --> bind0 v3 -->v2--> v4 v5 --"wikibase:directClaim"--> v2 bind2[/"count(?s)"/] v3 --o bind2 bind2 --as--o v6