query-8c519c0802c5eb6077e2845a53ed3c24

rq turtle/ttl

¿Qué peruanos tienen GitHub username? ¿Qué peruanos tienen GitHub username? ¿Qué peruanos tienen GitHub username? Welke Peruvianen hebben een GitHub username?

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#>
SELECT
  ?peruane
  ?peruaneLabel
  ?peruaneDescription
  ?usuarioDeGithub
{
   {
  SELECT DISTINCT ?peruane {
    {?peruane wdt:P27 wd:Q419 }
    UNION
    {?peruane wdt:P19/wdt:P131* wd:Q419 }
    UNION
    {?peruane wdt:P1532 wd:Q419}
  }
}
  ?peruane wdt:P2037 ?usuarioDeGithub.
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}.
}
ORDER BY ASC(?peruaneLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?peruane"):::projected v1("?peruaneLabel"):::projected v3("?usuarioDeGithub"):::projected a1((" ")) c8(["bd:serviceParam"]):::iri c10(["en"]):::literal c2(["wd:Q419"]):::iri subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P1532"--> c2 end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P19"--> a1 a1 --"wdt:P131"--> c2 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P27"--> c2 end union0r <== or ==> union0l end v2 --"wdt:P2037"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end