query-3ebc475b57bed19fe909c9b3868ad47e

rq turtle/ttl

title: DOIs of works that are describing a project that uses a given resource PREFIX target: http://www.wikidata.org/entity/Q112063555

SELECT DISTINCT ?doi WITH { SELECT DISTINCT ?work WHERE { ?work wdt:P4510 target: . } } AS %works WHERE { INCLUDE %works ?work wdt:P356 ?doi . }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#title: DOIs of works that are describing a project that uses a given resource
PREFIX target: <http://www.wikidata.org/entity/Q112063555>

SELECT DISTINCT ?doi
WHERE {
   {
  SELECT DISTINCT ?work WHERE {
    ?work wdt:P4510 target: .
  }
}  ?work wdt:P356 ?doi .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?doi"):::projected v1("?work") c2([http://www.wikidata.org/entity/Q112063555]):::iri v1 --"wdt:P4510"--> c2 v1 --"wdt:P356"--> v2