question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which mountains are contained in Inyo National Forest?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri rdf:type onto:Mountain}
Orange(huggingface)
Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:operator <http://dbpedia.org/resource/Massachusetts_Department_of_Transportation> . ?x prop:ow...
Orange(huggingface)
Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:battle res:Siege_of_Fort_Recovery . ?uri prop:governor res:Charles_Willing_Byrd . }
Orange(huggingface)
How many different people have been in any political seat in places which are under the Indian Standard timezone?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:timeZone <http://dbpedia.org/resource/Indian_Standard_Time> . ?x onto:leaderName ?uri . }
Orange(huggingface)
Name the hockey team which has head coach as Mike babcock and is based in Toronto ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:locationCity <http://dbpedia.org/resource/Toronto> . ?uri prop:headCoach <http://dbpedia.org/...
Orange(huggingface)
Who is the owner of the South end?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_South_End prop:owners ?uri }
Orange(huggingface)
What is the religion of the political party which is an international party of Hamas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hamas> prop:international ?x . ?x onto:religion ?uri . ?x rdf:type onto:P...
Orange(huggingface)
How many owners owned the clubs participating in the Premier leagues of '14?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season <http://dbpedia.org/resource/2014–15_Premier_League> . ?x prop:owner ?uri . }
Orange(huggingface)
Which musical artist associated with Tony Allen has label with Celluloid Records ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri prop:label...
Orange(huggingface)
Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:headquarter <http://dbpedia.org/resource/Niederkirchnerstraße> . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}
Orange(huggingface)
Who was the coach of marquette Golden Eagles men's basketball team 2012-13 season ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2012–13_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri }
Orange(huggingface)
Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation <http://dbpedia.org/resource/Itasca_State_Park> . ?uri prop:mouthLocation <htt...
Orange(huggingface)
Is Peter Crouch currently in the Stoke City FC?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Peter_Crouch> prop:currentclub <http://dbpedia.org/resource/Stoke_City_F.C.> }
Orange(huggingface)
In which cities are there american football teams where Matt Snorton played?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Matt_Snorton> prop:pastteams ?x . ?x onto:locationCity ?uri . ?x rdf:type...
Orange(huggingface)
What are the central characters in spy kids series?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:series <http://dbpedia.org/resource/Spy_Kids_(franchise)> . }
Orange(huggingface)
How many religion's people have died in Malaysia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Malaysia> . ?x onto:religion ?uri . }
Orange(huggingface)
List the mountains of the range Sierra Nevada (U.S.) located in California?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:locatedInArea <http://dbpedia.org/resource/California> . ?ur...
Orange(huggingface)
Name the emplyer for which Manu cornet has worked and also written in Google Web Toolkit ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google_Web_Toolkit onto:author ?uri}
Orange(huggingface)
How many cars are the predecessor of cars similar to the Pontiac G8?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Pontiac_G8> onto:relatedMeanOfTransportation ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}
Orange(huggingface)
Which person naratted The Incredible Hulk and also the writer of Tales of Suspense?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)> prop:narrated ?uri. <http://dbpedia.org/resource/Tales_of_Suspense> prop:writers ?uri}
Orange(huggingface)
What are some islands in the bahamas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:archipelago <http://dbpedia.org/resource/The_Bahamas> . ?uri rdf:type onto:Island}
Orange(huggingface)
Name the river whose source location is Nevado Mismi and region is Arequipa Region?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation <http://dbpedia.org/resource/Nevado_Mismi> . ?uri prop:sourceRegion <http://db...
Orange(huggingface)
Where is the origin of Filbert's Old Time Root Beer?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Filbert's_Old_Time_Root_Beer> onto:origin ?uri }
Orange(huggingface)
List the people residing in Wilton, Connecticut?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:residence <http://dbpedia.org/resource/Wilton,_Connecticut> }
Orange(huggingface)
How many sitcoms were produced by the company whose predecessor was the Desilu Productions?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:predecessor <http://dbpedia.org/resource/Desilu_Productions> . ?uri prop:company ?x . ?...
Orange(huggingface)
To which US states does the roads belong which meet at the East Whiteland Township in Pennsylvania?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction <http://dbpedia.org/resource/East_Whiteland_Township,_Chester_County,_Pennsylvania> . ?x onto:state ?uri . ?x rdf:type onto:...
Orange(huggingface)
Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri onto:company <http://dbpedia...
Orange(huggingface)
Name the district of Robert William Wilcox?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri }
Orange(huggingface)
Which division of Serbia national team is also the region of Dobinsk Ice Cave?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri. res:Dobšinská_Ice_Cave onto:region ?uri}
Orange(huggingface)
In how many places has Garbage recorded their songs?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:producer <http://dbpedia.org/resource/Garbage_(band)> . ?x onto:recordedIn ?uri . }
Orange(huggingface)
How many religions are followed amongst the people who've worked in the Korean army?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch <http://dbpedia.org/resource/Republic_of_Korea_Army> . ?x onto:religion ?uri . }
Orange(huggingface)
list the organisation with motive for peace and environmentalism?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:purpose <http://dbpedia.org/resource/Peace> . ?uri prop:purpose <http://dbpedia.org/resource...
Orange(huggingface)
How many things are crossed over by bridges which can carry cars?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries <http://dbpedia.org/resource/Motor_vehicle> . ?x prop:crosses ?uri . }
Orange(huggingface)
What is the religious affiliation of Wickramabahu Central College (National School)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wickramabahu_Central_College_(National_School)> prop:religiousAffiliation ?uri }
Orange(huggingface)
How many people were opponents of the ones buried in the tower of London?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingPlace <http://dbpedia.org/resource/Tower_of_London> . ?x onto:opponent ?uri . ?u...
Orange(huggingface)
Which are the cities on the river which also flows in Tukwila, Washington ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:city <http://dbpedia.org/resource/Tukwila,_Washington> . ?x onto:city ?uri . ?x rdf:type onto:...
Orange(huggingface)
Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> prop:cinematography ?uri. <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri}
Orange(huggingface)
Was Buzz Williams the headcoach of the Marquette Golden Eagles mens team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> prop:headcoach <http://dbpedia.org/resource/Buzz_Williams> }
Orange(huggingface)
How many other schools are there of the rugby players whose school is Michaelhouse ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school <http://dbpedia.org/resource/Michaelhouse> . ?x prop:school ?uri }
Orange(huggingface)
How many people have played for a club whose coach is Fred Hoiberg?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:coach <http://dbpedia.org/resource/Fred_Hoiberg> . ?uri prop:team ?x . }
Orange(huggingface)
What is the country of the Hirth Acrostar and the Cobra missile?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hirth_Acrostar> onto:origin ?uri. <http://dbpedia.org/resource/Cobra_(missile)> onto:origin ?uri . }
Orange(huggingface)
Which artist married to Lee Krasner?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:spouse <http://dbpedia.org/resource/Lee_Krasner> . ?uri rdf:type onto:Artist}
Orange(huggingface)
What layout can be found in cars similar to the Subaru Outback?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:related <http://dbpedia.org/resource/Subaru_Outback> . ?x onto:layout ?uri . ?x rdf:type onto:...
Orange(huggingface)
Who was the designer of john madden Football '92 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Madden_Football_'92> prop:designer ?uri }
Orange(huggingface)
Count the number teams which have former ice hockey players which also included American Hockey League?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam <http://dbpedia.org/resource/American_Hockey_League> . ?x onto:formerTeam ?uri }
Orange(huggingface)
What team were the people drafted to, which are in the National Hockey League?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:league <http://dbpedia.org/resource/National_Hockey_League> . ?x prop:draftTeam ?uri . ?x rdf:...
Orange(huggingface)
Which philosophy journal has compiler as Stephen Law ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:editor <http://dbpedia.org/resource/Stephen_Law> . ?uri prop:discipline <http://dbpedia.org/r...
Orange(huggingface)
How many have order (taxonomy) as Bacillales and division as Firmicutes are there?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order <http://dbpedia.org/resource/Bacillales> . ?uri onto:division <http://dbpedia.org/resource/Firmicutes> }
Orange(huggingface)
Name the stadiums of 2015 Pro Duta FC season?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:2015_Pro_Duta_FC_season prop:stadium ?uri }
Orange(huggingface)
Name the largest city in the county where there is a Cy-Fair High School.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cy-Fair_High_School> onto:county ?x . ?x onto:largestCity ?uri . }
Orange(huggingface)
Which american football players currently plays for Michigan Wolverines?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:currentteam <http://dbpedia.org/resource/Michigan_Wolverines> . ?uri rdf:type onto:AmericanFo...
Orange(huggingface)
Name the team for which Hensley Meulens played, which was also the debut team of Steve Ontiveros ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Ontiveros_(infielder)> prop:debutteam ?uri. <http://dbpedia.org/resource/Hensley_Meulens> onto:team ?uri}
Orange(huggingface)
What are some products of the company whose parent is BBC?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:parent <http://dbpedia.org/resource/BBC> . ?x prop:products ?uri . ?x rdf:type onto:Company}
Orange(huggingface)
Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Streetcar_Named_Desire_(play)> prop:writer ?uri. <http://dbpedia.org/resource/The_Catastrophe_of_Success> onto:author ?uri}
Orange(huggingface)
What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:notableCommanders res:Paul_Hausser . ?x prop:notableCommanders ?uri . }
Orange(huggingface)
For how many PMs did the politician work, whose successor was Kingsley Wood?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Kingsley_Wood> onto:successor ?x . ?x prop:primeminister ?uri . ?x...
Orange(huggingface)
Which race is the Best Mate is also the race of the Martin Molony?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Best_Mate prop:race ?uri. res:Martin_Molony onto:race ?uri}
Orange(huggingface)
Is Michael Schumacher the first driver of the 1994 Hungarian grand prix?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:1994_Hungarian_Grand_Prix prop:firstDriver res:Michael_Schumacher }
Orange(huggingface)
What killed John Thompson Mason and Martino Martini?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Thomson_Mason_(1787–1850)> onto:deathCause ?uri. <http://dbpedia.org/resource/Martino_Martini> onto:deathCause ?uri . }
Orange(huggingface)
Which moto of american Classical League is also the academic discipline of Probus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Classical_League> prop:motto ?uri. <http://dbpedia.org/resource/Probus_(journal)> onto:academicDiscipline ?uri}
Orange(huggingface)
Who fought in the battle at Tupelo Mississippi?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:place <http://dbpedia.org/resource/Tupelo,_Mississippi> . ?x prop:combatant ?uri . ?x rdf:type...
Orange(huggingface)
What are the books written by authors who died in Madrid?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace <http://dbpedia.org/resource/Madrid> . ?uri prop:author ?x . ?uri rdf:type onto:B...
Orange(huggingface)
Gregg Toland cinematographed how many things?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:cinematography <http://dbpedia.org/resource/Gregg_Toland> . }
Orange(huggingface)
What are some countries where companies headquartered in the Klang Valley operate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:headquarters <http://dbpedia.org/resource/Klang_Valley> . ?x prop:country ?uri . ?x rdf:type o...
Orange(huggingface)
How many cities are close to Lake Victoria?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lake_Victoria> onto:nearestCity ?uri . }
Orange(huggingface)
What is the birthplace of the netball player who is the relative of Rachel Rasmussen ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rachel_Rasmussen> prop:relatives ?x . ?x onto:birthPlace ?uri . ?x rdf:ty...
Orange(huggingface)
Which university has affiliations to Graham Holdings and Kaplan, Inc.?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:affiliations <http://dbpedia.org/resource/Graham_Holdings_Company> . ?uri prop:affiliations ...
Orange(huggingface)
List the academic discipline of the journals whose one of the discipline is neuro imaging ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline <http://dbpedia.org/resource/Neuroimaging> . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}
Orange(huggingface)
name the home stadium of FC Spartak Moscow season 2011-12
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri }
Orange(huggingface)
Does the white river flow into the connecticut river?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Connecticut_River> onto:rightTributary <http://dbpedia.org/resource/White_River_(Vermont)> }
Orange(huggingface)
Which artist was taught by Jos Ruiz y Blasco?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:training <http://dbpedia.org/resource/José_Ruiz_y_Blasco> . ?uri rdf:type onto:Artist}
Orange(huggingface)
List the bacterias whose division is Firmicutes and domain is bacteria?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:division <http://dbpedia.org/resource/Firmicutes> . ?uri prop:domain <http://dbpedia.org/reso...
Orange(huggingface)
Which composer of Motorpsycho Nitemare has also composed The time are A-Changing?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Motorpsycho_Nitemare> prop:composer ?uri. <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> onto:musicBy ?uri}
Orange(huggingface)
What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:J._T._Krogh onto:nationality ?uri. res:Camilla_Martin onto:country ?uri}
Orange(huggingface)
Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Southend-on-Sea> . ?uri rdf...
Orange(huggingface)
Who has built the stadiums which were rented by the Central american games of 2013?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/2013_Central_American_Games> . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}
Orange(huggingface)
How many cities are around the sea in which the the fig tree bay meets?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Fig_Tree_Bay> onto:inflow ?x . ?x prop:cities ?uri . ?x rdf:type o...
Orange(huggingface)
Who all were venerated in Islam?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn <http://dbpedia.org/resource/Islam> . }
Orange(huggingface)
List down the cinematographers of Mickey's Mellerdrammer?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> prop:cinematography ?uri }
Orange(huggingface)
Where is the ground of the soccer club, which has Alan Kusov as a team member?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Kusov__11> onto:team ?x . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClub}
Orange(huggingface)
Which shows have voices from people signed up with ABC Records?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:label <http://dbpedia.org/resource/ABC_Records> . ?uri prop:voices ?x . ?uri rdf:type onto:Tel...
Orange(huggingface)
How many licensees are there, of the radio stations whose area is Nashville, Tennessee?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x prop:licensee ?uri . }
Orange(huggingface)
Who was the architect of the stadium currently run by the Pittsburgh Pirates?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:operator <http://dbpedia.org/resource/Pittsburgh_Pirates> . ?x prop:architect ?uri . ?x rdf:ty...
Orange(huggingface)
What is the country where Sergei Ovchinnikov the volleyball player died, and Gumus was first aired ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gümüş_(TV_series)> prop:firstAired ?uri. <http://dbpedia.org/resource/Sergei_Ovchinnikov_(volleyball)> prop:placeOfDeath ?uri}
Orange(huggingface)
What is the county seat of the county which has an Evergreen High School?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evergreen_High_School_(King_County,_Washington)> onto:county ?x . ?x onto:countySeat ?uri . }
Orange(huggingface)
List the important people of Maryland Jockey Club ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Maryland_Jockey_Club prop:keyPeople ?uri }
Orange(huggingface)
Who founded the Not on our Watch?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> onto:foundedBy ?uri }
Orange(huggingface)
Who all have written songs that were then recorded in the Criteria Studios?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/Criteria_Studios> . ?x prop:writer ?uri . ?x rdf:type ...
Orange(huggingface)
For how many things are people famous, who were born in Nebraska?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Nebraska> . ?x onto:knownFor ?uri . }
Orange(huggingface)
Who is the chancellor of the university whose campus is in Woodlane, New Jersey ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:campus <http://dbpedia.org/resource/Woodlane,_New_Jersey> . ?x prop:chancellor ?uri . ?x rdf:t...
Orange(huggingface)
Name the rivers originating from an English speaking nation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/English_language> . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}
Orange(huggingface)
What are some movies whose distributor's CEO is Ted Hartley?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople <http://dbpedia.org/resource/Ted_Hartley> . ?uri prop:distributor ?x . ?uri rdf:type...
Orange(huggingface)
Which company manufactures cars like the Opel Karl ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:related <http://dbpedia.org/resource/Opel_Karl> . ?x prop:parentCompany ?uri . ?x rdf:type ont...
Orange(huggingface)
What shows are aired on sister channels of BBC Parliaments?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames <http://dbpedia.org/resource/BBC_Parliament> . ?uri onto:network ?x . ?uri rdf:typ...
Orange(huggingface)
Who are the players whose current clubs have Ferran Soriano as chairman?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:chairman <http://dbpedia.org/resource/Ferran_Soriano> . ?uri prop:currentclub ?x . ?uri rdf:ty...
Orange(huggingface)
Was Ne Daj Se, Nina first aired in Croatia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> prop:firstAired <http://dbpedia.org/resource/Croatia> }
Orange(huggingface)
Who designed the stadiums which have been rented by Oakland athletics?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/Oakland_Athletics> . ?x prop:architect ?uri . ?x rdf:type ...
Orange(huggingface)
Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics_–_Women's_artistic_individual_all-around> onto:silverMedalist ?uri }
Orange(huggingface)
Where did Goran Cengic die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Goran_Čengić prop:deathPlace ?uri }
Orange(huggingface)
Which company assembles its cars in Broadmeadows, Victoria?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:assembly <http://dbpedia.org/resource/Broadmeadows,_Victoria> . ?x onto:parentCompany ?uri . ?...
Orange(huggingface)