query-e20bfab16e06e34d2f7b3ee6e8a47185

rq turtle/ttl

Query for Property dashboard" error. I am getting this error no matter what I do and I have gotten other, simple queries to work with the dashboard. No start template 'Property dashboard' found, which is an impossible situation. This is potentially an upstream pywikibot issue. keeps giving a "Property dashboard query. My Property dashboardI have a working SPARQL query that has UNION in it but I am unable to figure out how to get the query to work with the syntax required by the --22:07, 15 March 2021 (UTC)) talk (NashonaI'm fairly new to SPARQL, apologies if I'm missing something obvious. My query is below. Thank you. -- UNION queries ]reply[22:48, 12 March 2021 (UTC)) talk (NashonaI have a SPARQL query that has UNION in it but I am unable to figure out how to get the query to work with the property dashboard. I'm fairly new to SPARQL, apologies if I'm missing something obvious. My query is below. Thank you. --

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 ?Northwestern_University ?Northwestern_UniversityLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
 { ?Northwestern_University wdt:P69 wd:Q309350. }
 UNION
 { ?Northwestern_University wdt:P69 wd:Q6806876. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Northwestern_University"):::projected c2(["bd:serviceParam"]):::iri c6(["wd:Q309350"]):::iri c7(["wd:Q6806876"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P69"--> c7 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P69"--> c6 end union0r <== or ==> union0l end