query-06f64dad97fea4371c14987bbb404a0d

rq turtle/ttl

title:Author name strings and their publications SELECT DISTINCT ?leapauthor ?publication ?publicationLabel ?pmid ?doi WHERE { VALUES ?leapauthor { "Adrie Jc Steyn" "Assaf Zaritsky" "Michael Roukes" "Chris Sander" "Fabian J. Theis" "Maddy Parsons" "Gregory Hannon" "Virginie Rozot" "Denise Kirschner" "Hagan Bayley" "Stéphane Pagès" "Joerg Bewersdorf"}

?publication wdt:P2093 ?leapauthor .

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } OPTIONAL {?publication wdt:P698 ?pmid .} OPTIONAL {?publication wdt:P356 ?doi .}
}

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Author name strings and their publications
SELECT DISTINCT ?leapauthor ?publication ?publicationLabel ?pmid ?doi  WHERE {
   VALUES ?leapauthor { "Adrie Jc Steyn"
                        "Assaf Zaritsky"
                        "Michael Roukes"
                        "Chris Sander"
                        "Fabian J. Theis"
                        "Maddy Parsons"
                        "Gregory Hannon"
                        "Virginie Rozot"
                        "Denise Kirschner"
                        "Hagan Bayley"
                        "Stéphane Pagès"
                        "Joerg Bewersdorf"}

  ?publication wdt:P2093 ?leapauthor .

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL {?publication wdt:P698 ?pmid .}
  OPTIONAL {?publication wdt:P356 ?doi .}  
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?doi"):::projected v1("?leapauthor"):::projected v3("?pmid"):::projected v2("?publication"):::projected c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal bind0[/VALUES ?leapauthor/] bind0-->v1 bind00(["Adrie Jc Steyn"]) bind00 --> bind0 bind01(["Assaf Zaritsky"]) bind01 --> bind0 bind02(["Michael Roukes"]) bind02 --> bind0 bind03(["Chris Sander"]) bind03 --> bind0 bind04(["Fabian J. Theis"]) bind04 --> bind0 bind05(["Maddy Parsons"]) bind05 --> bind0 bind06(["Gregory Hannon"]) bind06 --> bind0 bind07(["Virginie Rozot"]) bind07 --> bind0 bind08(["Denise Kirschner"]) bind08 --> bind0 bind09(["Hagan Bayley"]) bind09 --> bind0 bind010(["Stéphane Pagès"]) bind010 --> bind0 bind011(["Joerg Bewersdorf"]) bind011 --> bind0 v2 --"wdt:P2093"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P698".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P356".-> v4 end