query-efd44e1274aae348e4dee73e209518b9

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT 
  ?person
WHERE {
  SERVICE <https://monumenta.wikibase.cloud/sparql/> {
    ?person <https://monumenta.wikibase.cloud/prop/direct/P5> <https://monumenta.wikibase.cloud/entity/Q5> .
    OPTIONAL {
      ?person <https://monumenta.wikibase.cloud/prop/direct/P1> ?wikidata .
    }
    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("?person"):::projected v2("?wikidata") c6(["bd:serviceParam"]):::iri c3([https://monumenta.wikibase.cloud/entity/Q5]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["https://monumenta.wikibase.cloud/sparql/"] style s1 stroke-width:4px; v1 --https://monumenta.wikibase.cloud/prop/direct/P5--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -.https://monumenta.wikibase.cloud/prop/direct/P1.-> v2 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c6 --"wikibase:language"--> c8 end end