query-83297312069aa9b16c74fb45a57375b8

rq turtle/ttl

Articoli pubblicati nel vol. 53 di Cataloging & Classification Quarterly con autore come stringa SELECT ?item ?itemLabel ?authorstring ?vol WHERE { ?item wdt:P1433 wd:Q5051313 . # Pubblicato in Cataloging & Classification Quarterly ?item wdt:P478 ?vol . FILTER(?vol ="53") ?item wdt:P2093 ?authorstring. ?item wdt:P577 ?pubdate . MINUS {?item wdt:P50 ?author.} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?item

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Articoli pubblicati nel vol. 53 di Cataloging & Classification Quarterly con autore come stringa
SELECT ?item ?itemLabel ?authorstring ?vol
WHERE
{
  ?item wdt:P1433 wd:Q5051313 . # Pubblicato in Cataloging & Classification Quarterly
  ?item wdt:P478 ?vol .
  FILTER(?vol ="53")
  ?item wdt:P2093 ?authorstring. 
  ?item wdt:P577 ?pubdate .
  MINUS {?item wdt:P50 ?author.} 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  }
ORDER BY ?item

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?author") v3("?authorstring"):::projected v1("?item"):::projected v4("?pubdate") v2("?vol"):::projected c9(["bd:serviceParam"]):::iri c3(["wd:Q5051313"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?vol = '53'"]] f0 --> v2 v1 --"wdt:P1433"--> c3 v1 --"wdt:P478"--> v2 v1 --"wdt:P2093"--> v3 v1 --"wdt:P577"--> v4 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P50"--> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end