query-e94d5472903a38e5e545ad4b9dfda8a3

rq turtle/ttl

show me the article items and authors of articles identified with a PUBMED-ID (and later with a list of PUBMED-IDs) SELECT ?item ?itemLabel ?PMID ?authorLabel WHERE { ?item wdt:P698 wd:Q2082879 .} # has PubMed-ID

    VALUES ?PMID { '28665778' }

?item ?itemLabel ?PMID ?authorLabel SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .} }

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#>
# show me the article items and authors of articles identified with a PUBMED-ID (and later with a list of PUBMED-IDs)
SELECT  ?item ?itemLabel ?PMID ?authorLabel
WHERE {
  ?item wdt:P698 wd:Q2082879 .} # has PubMed-ID

        VALUES ?PMID { '28665778' }
  ?item ?itemLabel ?PMID ?authorLabel
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .}
}

Query found at