query-18847deb3a9902d947cb6b21586516e6

rq turtle/ttl

Authors in the High Energy Physics category of arXiv (Q118398) without INSPIRE-HEP author ID (P2930)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?author ?authorLabel WHERE {
  ?paper wdt:P818 ?arxiv.
  FILTER STRSTARTS(?arxiv, "hep").
  ?paper wdt:P50 ?author.
  MINUS {?author wdt:P2930 []}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?arxiv") v3("?author"):::projected v2("?paper") a1((" ")) c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["starts-with(?arxiv,'hep')"]] f0 --> v1 v2 --"wdt:P818"--> v1 v2 --"wdt:P50"--> v3 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P2930"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end