question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
What is the territory of the conflict whose commander is Feng Zicai? | 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:commander <http://dbpedia.org/resource/Feng_Zicai> . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict} | Orange(huggingface) |
Give the distinct number of other party of the people which have one of the party as Janata Party? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty <http://dbpedia.org/resource/Janata_Party> . ?x onto:otherParty ?uri } | Orange(huggingface) |
What are the television shows whose network's successor is BBC Two? | 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:successor <http://dbpedia.org/resource/BBC_Two> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow} | Orange(huggingface) |
What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> prop:affiliation ?uri. <http://dbpedia.org/resource/Vanderbilt_University_Medical_Center> prop:affiliation ?uri . } | Orange(huggingface) |
How many television shows are broadcasted on Fox Broadcasting Company? | 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:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri rdf:type onto:TelevisionShow} | Orange(huggingface) |
Over how many cities did the Bellaton MMA, Season 11 take place? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Bellator_MMA:_Season_Eleven> prop:city ?uri . } | Orange(huggingface) |
List down all the bands to which the writers of 03 Bonnie & Clyde are associated? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/'03_Bonnie_&_Clyde> onto:writer ?x . ?x onto:associatedBand ?uri . } | Orange(huggingface) |
From how many countries did the aeroplanes designed by Alexander Lippisch originate? | 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:designer <http://dbpedia.org/resource/Alexander_Lippisch> . ?x prop:nationalOrigin ?uri... | Orange(huggingface) |
What magazine is Marritt Cabal known for and is the publisher of Lucifer's Hammer? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Merritt_Cabal> onto:knownFor ?uri. <http://dbpedia.org/resource/Lucifer's_Hammer> onto:publisher ?uri} | Orange(huggingface) |
In which city was the company founded, which owns Grasim Bhiwani Textiles? | 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/Grasim_Bhiwani_Textiles> prop:parent ?x . ?x prop:foundation ?uri . ?x rd... | Orange(huggingface) |
What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia? | 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:successor <http://dbpedia.org/resource/Dragimir_of_Travunia_and_Zachlumia> . ?x prop:majorShri... | Orange(huggingface) |
What religion do the Wickramabahu Centeral College and Neungin High School both follow? | 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. <http://dbpedia.org/resource/Neungin_High_School> prop:religiousAffiliation ?uri . } | Orange(huggingface) |
Name the television show voiced by April Stewart and Eliza Schneider? | 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:voices <http://dbpedia.org/resource/April_Stewart> . ?uri prop:voices <http://dbpedia.org/re... | Orange(huggingface) |
Who is the President of the United World College of Costa Rica and United World Colleges? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri. res:United_World_Colleges prop:president ?uri . } | Orange(huggingface) |
Count the tenants of MasterCard Centre? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/MasterCard_Centre> prop:tenants ?uri . } | Orange(huggingface) |
Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Duncan_U._Fletcher onto:almaMater ?uri. res:Vanderbilt_Commodores onto:university ?uri} | Orange(huggingface) |
How many people are known for Dragons' Den? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:knownFor <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . } | Orange(huggingface) |
Which colonel has allegiance to Colony of Virginia ? | 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:allegiance <http://dbpedia.org/resource/Colony_of_Virginia> . ?uri prop:rank <http://dbpedia.... | Orange(huggingface) |
Where are the tombstones of the successors of Edward Wolcott? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Edward_O._Wolcott prop:successor ?x . ?x onto:restingPlace ?uri . } | Orange(huggingface) |
How many owners are there of things located in Alabama? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:city <http://dbpedia.org/resource/Alabama> . ?x onto:owner ?uri . } | Orange(huggingface) |
Where did the Vitis Vinifera grapes originate? | 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:species <http://dbpedia.org/resource/Vitis_vinifera> . ?x onto:origin ?uri . ?x rdf:type onto:Grape} | Orange(huggingface) |
List the software which uses Microsoft Windows as their operating system ? | 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:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri rdf:type onto:Software} | Orange(huggingface) |
List all the school of the rugby player whose one of the school is Michael House ? | 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:school <http://dbpedia.org/resource/Michaelhouse> . ?x prop:school ?uri . ?x rdf:type onto:Rug... | Orange(huggingface) |
Which military commander fought his battle at Fort Gadsen? | 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:battle <http://dbpedia.org/resource/Fort_Gadsden> . ?uri rdf:type onto:OfficeHolder} | Orange(huggingface) |
In which country did the planes designed by Ursula Hanle originate? | 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:designer <http://dbpedia.org/resource/Ursula_Hänle> . ?x prop:nationalOrigin ?uri . ?x rdf:ty... | Orange(huggingface) |
List the guest of the show The Other Side (The Outer Limits)? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> prop:guests ?uri } | Orange(huggingface) |
List the authors of the musicals whose songwriter is Richard M. Sherman. | 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:musicBy <http://dbpedia.org/resource/Richard_M._Sherman> . ?x onto:author ?uri . ?x rdf:type onto:Musical} | Orange(huggingface) |
Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> onto:routeStart ?uri. <http://dbpedia.org/resource/Ilya_Savelev> onto:birthPlace ?uri} | Orange(huggingface) |
What is the title of the Kakae and also the district of the Robert William Wilcox? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri. res:Robert_William_Wilcox prop:district ?uri} | Orange(huggingface) |
Who is the owner of the website which has the label Seed Eight ? | 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/Seed_Eight> prop:label ?x . ?x prop:owner ?uri . ?x rdf:type onto:Website... | Orange(huggingface) |
In how many places have Irishmen 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:birthPlace <http://dbpedia.org/resource/Ireland> . ?x onto:deathPlace ?uri . ?uri rdf:t... | Orange(huggingface) |
Where do current famous NatGeo photographers live? | 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:knownFor <http://dbpedia.org/resource/National_Geographic_(magazine)> . ?x onto:residence ?uri . ?x rdf:type onto:Photographer} | Orange(huggingface) |
Count the number of religions followed by the alumini of Ananda College. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/Ananda_College> . ?x onto:religion ?uri . } | Orange(huggingface) |
Which organisation has superintendent as Lieutenant general (United States)? | 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:superintendent <http://dbpedia.org/resource/Lieutenant_general_(United_States)> . ?uri rdf:type onto:Organisation} | Orange(huggingface) |
What is the total number of other non-fiction subject of the books whose one of the subject is Racism? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject <http://dbpedia.org/resource/Racism> . ?x onto:nonFictionSubject ?uri } | Orange(huggingface) |
What is the mascot of the military unit whose commander is Herbert Bautista ? | 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:notableCommander <http://dbpedia.org/resource/Herbert_Bautista> . ?x prop:mascot ?uri . ?x rdf... | Orange(huggingface) |
Give me all magazines whose founder died in Berkeley, 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 { ?x onto:deathPlace <http://dbpedia.org/resource/Berkeley,_California> . ?uri onto:founder ?x . ?uri rdf:type onto:Magazine} | Orange(huggingface) |
Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | 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:cinematography <http://dbpedia.org/resource/Gregg_Toland> . ?uri onto:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri... | Orange(huggingface) |
Who owns the railway line which goes through the Newark Station? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newark_station_(Delaware)> prop:line ?x . ?x prop:owner ?uri . } | Orange(huggingface) |
Which office holder's military branch is Continental Army and vice president is John Adams? | 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:militaryBranch <http://dbpedia.org/resource/Continental_Army> . ?uri onto:vicePresident <http://dbpedia.org/resource/John_Adams> . ?uri r... | Orange(huggingface) |
In which country is the Chapelle Saint-Louis de Carthage located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chapelle_Saint-Louis_de_Carthage> onto:location ?x . ?x onto:country ?uri . } | Orange(huggingface) |
Which scientist's academic advisor is Georg Meissner and is known for invention of Anthrax ? | 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:knownFor <http://dbpedia.org/resource/Anthrax> . ?uri prop:doctoralAdvisor <http://dbpedia.or... | Orange(huggingface) |
What is the common country of Ganz UV and Balaton wine region? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Balaton_wine_region onto:location ?uri} | Orange(huggingface) |
What is the common ideology followed by Katyayana and Palang Dharma Party ? | 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/Katyayana_(Buddhist)> prop:religion ?uri. <http://dbpedia.org/resource/Palang_Dharma_Party> onto:ideology ?uri} | Orange(huggingface) |
Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2014–15_Virginia_Tech_Hokies_men's_basketball_team> prop:headcoach ?uri } | Orange(huggingface) |
How many players participated in the 2004-05 FC Barcelona 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 COUNT(?uri) WHERE { <http://dbpedia.org/resource/2004–05_FC_Barcelona_season> prop:name ?uri . ?uri rdf:type onto... | Orange(huggingface) |
Who was the coach of marquette Golden Eagles men's basketball team 2012-13 season ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> prop:headcoach ?uri } | Orange(huggingface) |
Who is the producer of album, which has the song Eclipse ? | 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/Eclipse_(song)> onto:album ?x . ?x prop:producer ?uri . ?x rdf:type onto:... | Orange(huggingface) |
What is the content license of Darcs? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Darcs onto:license ?uri } | Orange(huggingface) |
List the cities which share the same water body as that of Florida ? | 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:cities <http://dbpedia.org/resource/Florida> . ?x prop:cities ?uri . ?x rdf:type onto:BodyOfWa... | Orange(huggingface) |
For how many things are americans famous for? | 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:placeOfBirth <http://dbpedia.org/resource/United_States> . ?x onto:knownFor ?uri . } | Orange(huggingface) |
What is the nationality of the economist who is one of the important people in the Foundation for Economic Education? | 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/Foundation_for_Economic_Education> onto:keyPerson ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Economist} | Orange(huggingface) |
In which city wasthe Live at The Triple Door (The Courage album) performed? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_at_The_Triple_Door_(The_Courage_album)> prop:recorded ?uri } | Orange(huggingface) |
What is the debut team of the american football player who studied in North Fort Myers High School? | 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:highschool <http://dbpedia.org/resource/North_Fort_Myers_High_School> . ?x prop:debutteam ?uri... | Orange(huggingface) |
What were robert sarvis and JAck Ryan nominated for ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Sarvis> onto:nominee ?uri. <http://dbpedia.org/resource/Jack_Ryan_(politician)> onto:nominee ?uri . } | Orange(huggingface) |
What came before PlayStation 4 and uses PlayStation 3 system software as OS? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:successor res:PlayStation_4 . ?uri prop:os res:PlayStation_3_system_software . } | Orange(huggingface) |
Who composed songs in the Mr Tambourine Man album? | 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:album <http://dbpedia.org/resource/Mr._Tambourine_Man_(album)> . ?x onto:composer ?uri . ?x rd... | Orange(huggingface) |
What games are played in Protestant schools? | 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:schooltype <http://dbpedia.org/resource/Protestantism> . ?x onto:sport ?uri . ?x rdf:type onto... | Orange(huggingface) |
What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)? | 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/Laemmle_Theatres> onto:service ?uri. <http://dbpedia.org/resource/José_Rivera_(playwright)> prop:awards ?uri} | Orange(huggingface) |
Count the writers whose work has been played in NY? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:place <http://dbpedia.org/resource/New_York> . ?x prop:writer ?uri . } | Orange(huggingface) |
What is the location of Dad's Root Beer on Google maps? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dad's_Root_Beer> prop:locationCity ?uri } | Orange(huggingface) |
Humes High School is alma mater to which person? | 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:education <http://dbpedia.org/resource/Humes_High_School> . ?uri rdf:type onto:Person} | Orange(huggingface) |
Who were the commanders during the events which took place in Sandusky County, Ohio? | 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:place <http://dbpedia.org/resource/Sandusky_County,_Ohio> . ?x onto:commander ?uri . ?x rdf:type onto:Event} | Orange(huggingface) |
Which set of researchers won the Gold Medal of the Royal Astronomical Society award? | 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:prizes <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . ?uri rdf:... | Orange(huggingface) |
Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier? | 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:openingTheme <http://dbpedia.org/resource/Te_Deum_(Charpentier)> . ?uri prop:themeMusicCompos... | Orange(huggingface) |
Who is married to Tony Ramo? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Tony_Romo . } | Orange(huggingface) |
Which river's source country is Zambia and mouth country is Mozambique? | 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:sourceCountry <http://dbpedia.org/resource/Zambia> . ?uri prop:mouthCountry <http://dbpedia.o... | Orange(huggingface) |
Name the directors of Lennon Legend: The Very Best of John Lennon (DVD)? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lennon_Legend:_The_Very_Best_of_John_Lennon_(DVD)> onto:director ?uri } | Orange(huggingface) |
Name the constituency of Domenico Modugno? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Domenico_Modugno prop:constituency ?uri } | Orange(huggingface) |
In how many different stadiums are the seasons of the 2015 NA Soccer league held? | 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:league <http://dbpedia.org/resource/2015_North_American_Soccer_League_season> . ?x onto:ground ?uri . ?uri rdf:type onto:Stadium} | Orange(huggingface) |
What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder? | 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:neighboringMunicipalities <http://dbpedia.org/resource/Lancy> . ?uri rdf:type onto:Settlement... | Orange(huggingface) |
Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, 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 {?uri prop:governor <http://dbpedia.org/resource/Charles_Willing_Byrd> . ?uri prop:restingplace <http://... | Orange(huggingface) |
Was Tommy Tucker's Tooth animated by Walt Disney? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> onto:animator <http://dbpedia.org/resource/Walt_Disney> } | Orange(huggingface) |
Which fields of the Paul Demiville is also the faith of Koay Teng Hai? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Koay_Teng_Hai onto:religion ?uri} | Orange(huggingface) |
List the broadcast area of the TV stations which also serves in Agalga? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea res:Agaléga . ?x prop:broadcastArea ?uri . } | Orange(huggingface) |
What is the political party of the Bengalis? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Bengalis . ?x onto:party ?uri . } | Orange(huggingface) |
Tirana is the largest city of which country? | 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:largestCity <http://dbpedia.org/resource/Tirana> . ?uri rdf:type onto:Country} | Orange(huggingface) |
Name the airlines which have a hub in airport in San Francisco? | 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:cityServed <http://dbpedia.org/resource/San_Francisco> . ?uri prop:hubs ?x . ?uri rdf:type ont... | Orange(huggingface) |
In which countries is coconut used as a food ingredient? | 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:ingredient <http://dbpedia.org/resource/Coconut> . ?x prop:country ?uri . ?x rdf:type onto:Foo... | Orange(huggingface) |
What is the mascot of the army unit whose commander is Peter Cosgrove ? | 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:commander <http://dbpedia.org/resource/Peter_Cosgrove> . ?x prop:mascot ?uri . ?x rdf:type ont... | Orange(huggingface) |
Which musical artists have collaborated with Waylon Jennings? | 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:associatedMusicalArtist <http://dbpedia.org/resource/Waylon_Jennings> . ?uri rdf:type onto:MusicalArtist} | Orange(huggingface) |
What political party has governed both in Baraily and Jowai? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Jowai onto:leaderName ?uri . } | Orange(huggingface) |
what is the headquarters of Juan Dalmau Ramerez? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Juan_Dalmau_RamÃrez prop:headquarters ?uri } | Orange(huggingface) |
Give me some software which run on mac os. | 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:operatingSystem <http://dbpedia.org/resource/Mac_OS> . ?uri rdf:type onto:Software} | Orange(huggingface) |
What games are played at universities in Lanao Del Sur? | 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:state <http://dbpedia.org/resource/Lanao_del_Sur> . ?x onto:athletics ?uri . ?x rdf:type onto:University} | Orange(huggingface) |
Count all those who previously played for a team which ownes Varsity Stadium ? | 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:field <http://dbpedia.org/resource/Varsity_Stadium> . ?uri onto:formerTeam ?x . } | Orange(huggingface) |
Give the name of the managers of England national under-20 football team and England national under-21 football team? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?uri prop:managerclubs <http://dbpedia.org/resource/England_national_under-20_football_team> . ?uri prop:managerclubs <http://dbpedia.org/resource/England_national_under-21_football_team> . } | Orange(huggingface) |
Who are the producers of the movies which has music by Gary Chang ? | 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:music <http://dbpedia.org/resource/Gary_Chang> . ?x prop:producer ?uri . ?x rdf:type onto:Film... | Orange(huggingface) |
How many things belong to a division of plant 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/Plant> . ?uri onto:division ?x . } | Orange(huggingface) |
List the show related to the which was followed by Doctor Who Extra? | 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:subsequentWork <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow} | Orange(huggingface) |
What are the universities where athletics is regulated by National Collegiate 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 {?uri onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri rdf:type onto:University} | Orange(huggingface) |
Which awards has Puerto Ricons won? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Puerto_Rico . ?x prop:awards ?uri . } | Orange(huggingface) |
Where did the genres originate which can be found in The Mudbloods? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:The_Mudbloods prop:genre ?x . ?x onto:stylisticOrigin ?uri . } | Orange(huggingface) |
What cities are near to Nihoa which is also known as Bird Island? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Nihoa prop:nearestCity ?uri } | Orange(huggingface) |
Where was Live in Detroit, MI recorded and was also palce of birth of the Bodhin Kjolhede? | 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/Live_in_Detroit,_MI> onto:recordedIn ?uri. <http://dbpedia.org/resource/Bodhin_Kjolhede> prop:placeOfBirth ?uri} | Orange(huggingface) |
List the ceremonial county of East Tilbury? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri } | Orange(huggingface) |
Which TV show's setting is in Massachusetts and is the subsequent work of Fraiser ? | 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/Frasier> . ?uri onto:location <http://dbpedia.org/resource/Massachusetts> . ?uri rdf:type ont... | Orange(huggingface) |
List some writers which speak one of the Germanic languages. | 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:languageFamily <http://dbpedia.org/resource/Germanic_languages> . ?uri prop:language ?x . ?uri... | Orange(huggingface) |
Where has the employee of Columbia Records worked ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Columbia_Records . ?x onto:employer ?uri . } | Orange(huggingface) |
Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:LG_Optimus_Vu onto:operatingSystem ?uri. res:Manu_Cornet prop:employer ?uri} | Orange(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.