query-f24283699cfa664140e35179c2edaf11

rq turtle/ttl

Query Wikidata entities with an affiliation with UNLV LibrariesGenerate English list of names of UNLV Library faculty and staff

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>

SELECT DISTINCT ?item ?itemLabel ?itemDescription (SAMPLE(?image) AS ?image) ?sitelink WHERE {
  ?item wdt:P31 wd:Q5;
    wdt:P1416 wd:Q73644758.
  OPTIONAL { ?item wdt:P18 ?image. }
  OPTIONAL {
    ?sitelink schema:about ?item;
      schema:isPartOf <https://en.wikipedia.org/>.
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel ?itemDescription ?sitelink

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?image"):::projected v1("?item"):::projected v3("?sitelink"):::projected c8([https://en.wikipedia.org/]):::iri c10(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c12(["en"]):::literal c4(["wd:Q73644758"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P1416"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:about".-> v1 v3 --"schema:isPartOf"--> c8 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end bind1[/"sample(?image)"/] v4 --o bind1 bind1 --as--o v4