question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Estadio_Nacional_de_Costa_Rica_(2011)> onto:builder ?uri. <http://dbpedia.org/resource/Xianren_Cave> onto:country ?uri}
Orange(huggingface)
Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?
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:majorShrine <http://dbpedia.org/resource/Canada> . ?uri prop:canonizedBy <http://dbpedia.org/...
Orange(huggingface)
What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> onto:academicDiscipline ?uri. <http://dbpedia.org/resource/Ragout_fin> onto:ingredient ?uri}
Orange(huggingface)
Count the awards given to the recepients of the Becket fund for religious liberty.
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:award <http://dbpedia.org/resource/Becket_Fund_for_Religious_Liberty> . ?x prop:awards ?uri . }
Orange(huggingface)
How many prime ministers did the predecessor of Duncan Sandys serve?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Duncan_Sandys> prop:successor ?x . ?x prop:primeminister ?uri . }
Orange(huggingface)
How many local authorities manage mixed gender schools?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:gender <http://dbpedia.org/resource/Mixed-sex_education> . ?x onto:localAuthority ?uri . }
Orange(huggingface)
Name the person whose daughter is Rohan Marley and also another children named Sharon Marley ?
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:child <http://dbpedia.org/resource/Rohan_Marley> . ?uri prop:children <http://dbpedia.org/res...
Orange(huggingface)
To which company does Raymond Conner is critical to?
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:keyPeople <http://dbpedia.org/resource/Raymond_Conner> . ?uri rdf:type onto:Company}
Orange(huggingface)
Give me some shows owned by BBC one and BBC hd?
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:network <http://dbpedia.org/resource/BBC_One> . ?uri onto:network <http://dbpedia.org/resource/BBC_HD> . ?uri rdf:type onto:TelevisionSh...
Orange(huggingface)
Which American football player is a former team player of Indianapolis Colts and current team is 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 onto:formerTeam <http://dbpedia.org/resource/Indianapolis_Colts> . ?uri prop:currentteam <http://d...
Orange(huggingface)
Who is the founder of the trade union which affiliates with Amalgamated Association of Iron and Steel Workers?
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/Amalgamated_Association_of_Iron_and_Steel_Workers> onto:affiliation ?x . ...
Orange(huggingface)
What kind of games are made by Interplay Entertainment?
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:publisher <http://dbpedia.org/resource/Interplay_Entertainment> . ?x prop:genre ?uri . ?x rdf:...
Orange(huggingface)
Who produces the trains operated by the MTR?
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:operator <http://dbpedia.org/resource/MTR> . ?x onto:manufacturer ?uri . ?x rdf:type onto:Train}
Orange(huggingface)
Give me a count of bacterias which belongs to Bacilli class?
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 {?uri onto:class <http://dbpedia.org/resource/Bacilli> . ?uri rdf:type onto:Bacteria}
Orange(huggingface)
List all the tenants of the stadium where the WWF Summer Slam 2004 took place.
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/SummerSlam_(2004)> prop:venue ?x . ?x onto:tenant ?uri . }
Orange(huggingface)
Count the number of people became famous for when Andrew Jackson was a commander ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander <http://dbpedia.org/resource/Andrew_Jackson> . ?uri onto:knownFor ?x . }
Orange(huggingface)
What is the former partner of the figure skaters whose current partner is Alexa Scimeca?
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:currentPartner <http://dbpedia.org/resource/Alexa_Scimeca> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
Orange(huggingface)
In how many areas do the networks broadcast, which also broadcasts in North Carolina?
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 onto:broadcastArea <http://dbpedia.org/resource/North_Carolina> . ?x prop:area ?uri . ?uri r...
Orange(huggingface)
Where was James McClure born ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> prop:birthPlace ?uri }
Orange(huggingface)
Who directed the albums recorded in Anaheim?
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/Anaheim,_California> . ?x prop:director ?uri . ?x rdf:...
Orange(huggingface)
What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al_Gore_presidential_campaign,_2000> onto:incumbent ?uri. <http://dbpedia.org/resource/Ann_Lewis> onto:president ?uri}
Orange(huggingface)
Georg Meissner was doctoral supervisor of which scientist ?
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:doctoralAdvisor <http://dbpedia.org/resource/Georg_Meissner> . ?uri rdf:type onto:Scientist}
Orange(huggingface)
What is the river that falls into North Sea and Thames Estuary?
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:riverMouth <http://dbpedia.org/resource/North_Sea> . ?uri onto:riverMouth <http://dbpedia.org/resource/Thames_Estuary> . ?uri rdf:type o...
Orange(huggingface)
From which party is the politician who was selected in Barasat constituency?
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:constituency <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x onto:party ?u...
Orange(huggingface)
Which royal people are buried in Rome?
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:placeOfBurial <http://dbpedia.org/resource/Rome> . ?uri rdf:type onto:Royalty}
Orange(huggingface)
Which stockholder of yale Repertory Theatre was training center of William Anthony ?
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/William_Anthony_(artist)> onto:training ?uri. <http://dbpedia.org/resource/Yale_Repertory_Theatre> prop:owner ?uri}
Orange(huggingface)
What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia?
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:leaderName <http://dbpedia.org/resource/Pandikar_Amin_Mulia> . ?uri rdf:type onto:Country}
Orange(huggingface)
Which soccer clubs are in the Liga Divisi Utama?
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:season <http://dbpedia.org/resource/Liga_Divisi_Utama> . ?x prop:name ?uri . ?x rdf:type onto:...
Orange(huggingface)
How many cities are around the sea into which the aegean sea flows?
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/Aegean_Sea> onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type on...
Orange(huggingface)
Name an American football player who debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?
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:debutteam <http://dbpedia.org/resource/Chicago_Bears> . ?uri onto:formerTeam <http://dbpedia....
Orange(huggingface)
What show has theme music composer as Ron Grainer and at the same time is related to Class (2016 TV series)?
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:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri onto:related <http://dbpe...
Orange(huggingface)
Which party won the elections when Y.S. Rajasekhara Reddy was in power?
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:leader <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x onto:affiliation ?uri . ?x r...
Orange(huggingface)
What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?
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:subsequentWork <http://dbpedia.org/resource/Crusade_(TV_series)> . ?uri onto:developer <http://dbpedia.org/resource/J._Michael_Straczynsk...
Orange(huggingface)
What genre of games are made by Blizzard Entertainment 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:developer <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x prop:genre ?uri . ?x rdf:t...
Orange(huggingface)
Name the fictional character whose relative are Duck family and Clan McDuck?
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:relative <http://dbpedia.org/resource/Duck_family_(Disney)> . ?uri prop:relatives <http://dbp...
Orange(huggingface)
Name the origins of the river with Quich Department as one of the origin ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:origin res:Quiché_Department . ?x onto:origin ?uri . }
Orange(huggingface)
Which parent comapny of hypnotize Minds is the label of the Producers, a 2005 film?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hypnotize_Minds> prop:parent ?uri. <http://dbpedia.org/resource/The_Producers_(2005_film)> prop:label ?uri}
Orange(huggingface)
What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?
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/Smerinthus_saliceti> onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Entomologist}
Orange(huggingface)
List the governers of Winston Bryant?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri }
Orange(huggingface)
Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?
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:doctoralStudents <http://dbpedia.org/resource/Mary_Ainsworth> . ?x prop:doctoralStudents ?uri ...
Orange(huggingface)
Name the mountain whose parent peak is located in Mexico.
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:locatedInArea <http://dbpedia.org/resource/State_of_Mexico> . ?uri onto:parentMountainPeak ?x . ?uri rdf:type onto:Mountain}
Orange(huggingface)
List presidents of the school whose one of the president is Charles, Prince of Wales?
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:president <http://dbpedia.org/resource/Charles,_Prince_of_Wales> . ?x prop:president ?uri . ?x...
Orange(huggingface)
What are the movies whose director's daughter is Luke Scott?
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:child <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri prop:director ?x . ?uri rdf:t...
Orange(huggingface)
Name the office holders whose successor died in Morristown, New Jersey?
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:deathPlace <http://dbpedia.org/resource/Morristown,_New_Jersey> . ?uri onto:successor ?x . ?uri rdf:type onto:OfficeHolder}
Orange(huggingface)
Who are the major stockholders of the bank which is the company of Bloomberg Markets?
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/Bloomberg_Markets> prop:company ?x . ?x prop:owner ?uri . ?x rdf:type ont...
Orange(huggingface)
Who are the parent of the people that has POD as Redding, Connecticut ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Redding,_Connecticut> . ?x onto:parent ?uri . }
Orange(huggingface)
What is the name of the homeground of football team Panionios G.S.S.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2013–14_Panionios_G.S.S._season onto:ground ?uri }
Orange(huggingface)
In which sects were the aristocrats included, who were buried in Westminister abbey?
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:majorShrine <http://dbpedia.org/resource/Westminster_Abbey> . ?x prop:veneratedIn ?uri . ?x rd...
Orange(huggingface)
How many mountain are there in Sierra Nevada range?
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 {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri rdf:type onto:Mountain}
Orange(huggingface)
Name the notable commanders of Army Group Oberrhein ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> prop:notableCommanders ?uri }
Orange(huggingface)
Copley Medal has been awarded to which scientists?
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:awards <http://dbpedia.org/resource/Copley_Medal> . ?uri rdf:type onto:Scientist}
Orange(huggingface)
How many awards have been awarded to people who are buried in Glendale, California?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace <http://dbpedia.org/resource/Glendale,_California> . ?x onto:award ?uri . }
Orange(huggingface)
In which state does the valley bordering the Modoc plateau lie?
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:border <http://dbpedia.org/resource/Modoc_Plateau> . ?x onto:state ?uri . ?x rdf:type onto:Val...
Orange(huggingface)
Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests <http://dbpedia.org/resource/Michael_Cristofer> . ?x prop:guests ?uri }
Orange(huggingface)
List down all the baseball teams whose team manager was a Catcher?
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:position <http://dbpedia.org/resource/Catcher> . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}
Orange(huggingface)
For how many other teams have the members of Atlant Moscow Oblast played?
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:playedFor <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x onto:formerTeam ?uri . }
Orange(huggingface)
Which were the philosophers whose primary interest was Natural philosophy?
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:mainInterests <http://dbpedia.org/resource/Natural_philosophy> . ?uri rdf:type onto:Philosoph...
Orange(huggingface)
Which program was on NBC network with executive producer as Glen and Les Charles?
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:network <http://dbpedia.org/resource/NBC> . ?uri onto:executiveProducer <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri rdf:typ...
Orange(huggingface)
List the colonel with branch as Militia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:branch <http://dbpedia.org/resource/Militia> . ?uri prop:rank <http://dbpedia.org/resource/Colonel_(United_States)> . }
Orange(huggingface)
What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak?
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/Wickramabahu_Central_College_(National_School)> prop:religiousAffiliation ?uri. <http://dbpedia.org/resource/Vesak> onto:type ?uri}
Orange(huggingface)
Who wrote the play in which a character called Stella Kowalski exists?
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:characters <http://dbpedia.org/resource/Stella_Kowalski> . ?x prop:writer ?uri . ?x rdf:type o...
Orange(huggingface)
Name a movie with actor as Momoko Kochi and music by Akira Ifukube?
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:starring <http://dbpedia.org/resource/Momoko_Kōchi> . ?uri prop:music <http://dbpedia.org/re...
Orange(huggingface)
Name some software as a service?
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:license <http://dbpedia.org/resource/Software_as_a_service> . ?uri rdf:type onto:Software}
Orange(huggingface)
How many shows is Russell Davies known for?
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/Russell_T_Davies> prop:notableworks ?uri . ?uri rdf:type onto:Tele...
Orange(huggingface)
Name the office holder with predecessor as Mark Latham and partner Tim Mathieson?
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:predecessor <http://dbpedia.org/resource/Mark_Latham> . ?uri onto:partner <http://dbpedia.org...
Orange(huggingface)
In how many places have people canonized by John Paul II died?
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:canonizedBy <http://dbpedia.org/resource/Pope_John_Paul_II> . ?x prop:deathPlace ?uri ....
Orange(huggingface)
Which things are Breann McGregor known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Breann_McGregor prop:knownFor ?uri }
Orange(huggingface)
Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?
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:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri prop:editing <http://dbpedia.or...
Orange(huggingface)
What is the military conflict whose commanders are John McEwen and Phm Vn ng?
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:commander <http://dbpedia.org/resource/John_McEwen> . ?uri onto:commander <http://dbpedia.org/resource/Phạm_Văn_Đồng> . ?uri rdf:t...
Orange(huggingface)
How many dishes are made with an ingredient belonging to the flowering plant species?
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 { ?x onto:division <http://dbpedia.org/resource/Flowering_plant> . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}
Orange(huggingface)
Name the rivers who originate from Essex?
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:mouthPlace <http://dbpedia.org/resource/Essex> . ?uri rdf:type onto:River}
Orange(huggingface)
Who is the editor of Hearth and Home?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Hearth_and_Home onto:editor ?uri }
Orange(huggingface)
List the fields of Sylvain Lvi ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sylvain_Lévi prop:fields ?uri }
Orange(huggingface)
Matthew kane and Park rankin are citizens of which country?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Matthew_Kane_(actor)> onto:citizenship ?uri. <http://dbpedia.org/resource/Park_Rankin> onto:citizenship ?uri . }
Orange(huggingface)
Does KOMC play Gospel Music?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/KOMC_(AM)> onto:programmeFormat <http://dbpedia.org/resource/Gospel_music> }
Orange(huggingface)
Count the awards received by Immunologists?
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:fields <http://dbpedia.org/resource/Immunology> . ?x onto:award ?uri . ?uri rdf:type on...
Orange(huggingface)
What is the total number of guests on the show whose theme music is Let me be your star?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music <http://dbpedia.org/resource/Let_Me_Be_Your_Star> . ?x prop:guests ?uri . }
Orange(huggingface)
Where are Aureus and Solidus used as currency?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:currency <http://dbpedia.org/resource/Aureus> . ?uri onto:currency <http://dbpedia.org/resource/Solidus_(coin)> . }
Orange(huggingface)
What is the television show whose executive producer is Steven Peterman?
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:executiveProducer <http://dbpedia.org/resource/Steven_Peterman> . ?uri rdf:type onto:Televisi...
Orange(huggingface)
To which label did The Producers and I pray on Christmas sign up?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Producers_(2005_film)> prop:label ?uri. <http://dbpedia.org/resource/I_Pray_on_Christmas> prop:label ?uri . }
Orange(huggingface)
Journals of how many fields can be found in US?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country <http://dbpedia.org/resource/United_States> . ?x prop:discipline ?uri . }
Orange(huggingface)
What is the college of the basketball player who lives in Ashton Historic district?
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:birthPlace <http://dbpedia.org/resource/Ashton_Historic_District> . ?x prop:college ?uri . ?x ...
Orange(huggingface)
How many non fiction topics does Thud! deals with?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri . }
Orange(huggingface)
Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri. res:Mario_García_Menocal onto:almaMater ?uri}
Orange(huggingface)
Count the number of ingredient of the foods which have one of the ingredient is Pork ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient <http://dbpedia.org/resource/Pork> . ?x onto:ingredient ?uri }
Orange(huggingface)
How many currencies are used in places where people speak French?
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 { ?x onto:officialLanguage <http://dbpedia.org/resource/French_language> . ?x onto:currency ?uri . ?uri rdf:type onto:Currency}
Orange(huggingface)
in which country does the river end which originates in Lebrsnik?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:mouthCountry ?uri . }
Orange(huggingface)
What are the movies whose music is given by Laurie Johnson?
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:music <http://dbpedia.org/resource/Laurie_Johnson> . ?uri rdf:type onto:Film}
Orange(huggingface)
What sports are played at universities affiliated by States Colleges and Universities athletic association?
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:affiliation <http://dbpedia.org/resource/State_Colleges_and_Universities_Athletic_Association> . ?x onto:sport ?uri . ?x rdf:type onto:Uni...
Orange(huggingface)
Who all have been a commander during the battles of Ohio?
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:place <http://dbpedia.org/resource/Ohio> . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryC...
Orange(huggingface)
What is the leader of the government agency which is the military unit of Erich Kempka?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Erich_Kempka onto:militaryUnit ?x . ?x onto:leader ?uri . }
Orange(huggingface)
What are the party of the politicians whose deputy was Chaudhary Devi Lal?
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:deputy <http://dbpedia.org/resource/Chaudhary_Devi_Lal> . ?x onto:otherParty ?uri . ?x rdf:typ...
Orange(huggingface)
List the battles fought by Roh Tae-woo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> prop:battles ?uri }
Orange(huggingface)
Who is the office holder for constituencies Castro District and Haight-Ashbury?
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:constituency <http://dbpedia.org/resource/Castro_District,_San_Francisco> . ?uri prop:consti...
Orange(huggingface)
What is the common region of the broadcast area of ITV and nationality of Ajahn Thate?
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/ITV_(Thailand)> prop:broadcastArea ?uri. <http://dbpedia.org/resource/Ajahn_Thate> onto:nationality ?uri}
Orange(huggingface)
List all the bands which have members of the band Guy in them?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Guy_(band)> onto:bandMember ?x . ?x onto:associatedBand ?uri . }
Orange(huggingface)
Who has Saint Joseph and Mary as parents?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:parent <http://dbpedia.org/resource/Saint_Joseph> . ?uri onto:parent <http://dbpedia.org/resource/Mary_(mother_of_Jesus)> . }
Orange(huggingface)
Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?
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:doctoralAdvisor <http://dbpedia.org/resource/John_Robert_Woodyard> . ?uri prop:prizes <http:/...
Orange(huggingface)
Saores de costa built a bridge over which river?
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:builder <http://dbpedia.org/resource/Soares_da_Costa> . ?x onto:crosses ?uri . ?x rdf:type ont...
Orange(huggingface)
Count the number of families of the Animal kingdom.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom <http://dbpedia.org/resource/Animal> . ?x onto:family ?uri . }
Orange(huggingface)