question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
In which cities can the beverage related to Barq's be found?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> onto:related ?x . ?x prop:locationCity ?uri . }
lcquad
What is the birth place of the astronaut whose mission was the Vostok programmer?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:mission <http://dbpedia.org/resource/Vostok_programme> . ?x onto:birthPlace ?uri . ?x rdf:type onto:Astronaut}
lcquad
Count everyone who studied at an institute which are in Suburbs?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus <http://dbpedia.org/resource/Suburb> . ?uri prop:education ?x . }
lcquad
Where did Whitney Wistert debut?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Whitey_Wistert prop:debutteam ?uri }
lcquad
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 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:majorShrine ?uri . ?x rdf:type onto:Monarch}
lcquad
How many television shows have Fox Broadcasting Company as their channel?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri rdf:type onto:TelevisionShow}
lcquad
What is the river whose mouth locations are Arctic Ocean and Laptev Sea?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:mouthLocation <http://dbpedia.org/resource/Arctic_Ocean> . ?uri prop:mouthLocation <http://dbpedia.org/resource/Laptev_Sea> . ?uri rdf:...
lcquad
What are some wars fought when Chung Il Kwon as the country's prime minister?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:primeminister <http://dbpedia.org/resource/Chung_Il-kwon> . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}
lcquad
Where was the person born who died in Bryn Mawr Hospital?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath res:Bryn_Mawr_Hospital . ?x prop:placeOfBirth ?uri . }
lcquad
What is the faith of the Ajith Perera and religious affiliation of the Neungin High School?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ajith_Perera onto:religion ?uri. res:Neungin_High_School prop:religiousAffiliation ?uri}
lcquad
Who was in military unit which played the role of Air interdiction?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:role res:Air_interdiction . ?uri onto:militaryUnit ?x . }
lcquad
Who are the current members of Insects vs Robots?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Insects_vs_Robots prop:currentMembers ?uri }
lcquad
Is Ombla originate in Croatia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Ombla onto:sourceMountain res:Croatia }
lcquad
Greater Napanee is the home town of what people?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:hometown <http://dbpedia.org/resource/Greater_Napanee> . ?uri rdf:type onto:Person}
lcquad
What place did Edwin Adams die at, which gave birth to William A Purtell?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edwin_Adams_(politician)> prop:placeOfDeath ?uri. <http://dbpedia.org/resource/William_A._Purtell> onto:birthPlace ?uri . }
lcquad
Name the nationalteam of Trn Vit Hng ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Trần_Việt_Hương prop:nationalteam ?uri }
lcquad
Which designer of RENFE also owns Renaissance Center ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:RENFE_Class_333 onto:designer ?uri. res:Renaissance_Center prop:owner ?uri}
lcquad
Whihc uni did Joshua A. Siegel attend ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Joshua_A._Siegel prop:education ?uri }
lcquad
How many books are written by the author who is famous for Novelas Ejemplares?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:notableWork <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri onto:author ?x . ?uri rdf:type onto:Book}
lcquad
Name the rivers who originate from Essex?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace <http://dbpedia.org/resource/Essex> . ?uri rdf:type onto:River}
lcquad
Companies founded in Taiwan have typically which divisions?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/Taiwan> . ?x onto:division ?uri . ?x rdf:type onto:Company}
lcquad
Did Timm Gunn guest in Sunrise (HIMYM)?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Sunrise_(How_I_Met_Your_Mother)> prop:guests <http://dbpedia.org/resource/Tim_Gunn> }
lcquad
to which university did both, the Stanford Cardinal and Gerald Reaven go?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Stanford_Cardinal onto:university ?uri. res:Gerald_Reaven onto:institution ?uri}
lcquad
Name the nearest city to David W. Brown House ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:David_W._Brown_House onto:nearestCity ?uri }
lcquad
where did Deion Sanders debut?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Deion_Sanders prop:debutteam ?uri }
lcquad
What cities are nearer to Fuountain Lake Farm?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fountain_Lake_Farm prop:nearestCity ?uri }
lcquad
Who are the characters of Batman Live?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Batman_Live prop:characters ?uri }
lcquad
Which artists trained in San Francisco Art Institute?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:training <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri rdf:type onto:Artist}
lcquad
What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Kansas_City_Assembly_Plant> onto:owningOrganisation ?uri. <http://dbpedia.org/resource/Ford_Y-block_engine> onto:manufacturer ?uri}
lcquad
Name the country with currency as Aureus ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:currency <http://dbpedia.org/resource/Aureus> . ?uri rdf:type onto:Country}
lcquad
what awards have been given to A. Peter Dewey?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:A._Peter_Dewey onto:award ?uri }
lcquad
How many shows belong to the network one of whose sister station is Cartoonite?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sisterStation <http://dbpedia.org/resource/Cartoonito> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
what has been developed by John Fanning?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:developer <http://dbpedia.org/resource/John_Fanning_(businessman)> }
lcquad
Muhammad Yunus has won how many awards?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> onto:award ?uri . }
lcquad
List the associates of bands which have a label by Motown ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel <http://dbpedia.org/resource/Motown> . ?x prop:associatedActs ?uri . ?x rdf:type onto:Band}
lcquad
Who wrote the musical whose composer is Emil Dean Zoghby?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:musicBy <http://dbpedia.org/resource/Emil_Dean_Zoghby> . ?x onto:author ?uri . ?x rdf:type onto:Musical}
lcquad
Count the units garrisoned at Arlington County, Virginia.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:garrison <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri rdf:type onto:MilitaryUnit}
lcquad
What is the faith of Kwai Chang Caine ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kwai_Chang_Caine onto:religion ?uri }
lcquad
Who is related to Kelly Osbourne & Ozzy Osbourne?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:relatives res:Kelly_Osbourne . ?uri prop:relatives res:Ozzy_Osbourne . }
lcquad
What are the houses of the legislature where the leader is called Pullaiahgaripalli ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pullaiahgaripalli> prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}
lcquad
Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daund_Junction_railway_station> onto:servingRailwayLine ?uri. <http://dbpedia.org/resource/99_(2009_film)> prop:recorded ?uri}
lcquad
List the ethnicity of Riley Reid?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Riley_Reid prop:ethnicity ?uri }
lcquad
Which shows are from a company whose subsidiary is Viacom Productions?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsidiary <http://dbpedia.org/resource/Viacom_Productions> . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Giuseppe Bertello and Pietro Parolin are leaders of which place ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:leader <http://dbpedia.org/resource/Giuseppe_Bertello> . ?uri onto:leader <http://dbpedia.org/resource/Pietro_Parolin> . ?uri rdf:type onto:Place}
lcquad
What is the university whose campus is Mount Moosilauke?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:campus <http://dbpedia.org/resource/Mount_Moosilauke> . ?uri rdf:type onto:University}
lcquad
How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Sanggar_Agung> prop:architecturalStyle ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}
lcquad
How many things are written in C++?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage <http://dbpedia.org/resource/C++> . }
lcquad
Name the garrison of the Western Naval Command and line of the Vadodara Junction railway station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Western_Naval_Command prop:garrison ?uri. res:Vadodara_Junction_railway_station prop:line ?uri}
lcquad
Who are the shareholder of the soccer club for whom Steve Holland plays?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Holland_(footballer)> prop:currentclub ?x . ?x prop:owner ?uri . }
lcquad
Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Mediterranean_Sea prop:cities ?uri}
lcquad
Was Don't Bring Me Down recorded in West Germany?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Don't_Bring_Me_Down> prop:recorded <http://dbpedia.org/resource/West_Germany> }
lcquad
Through which cities do the rivers starting at the Montauk State Park flow?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace <http://dbpedia.org/resource/Montauk_State_Park> . ?x onto:city ?uri . ?x rdf:type onto:River}
lcquad
How many ideologies do the political party of Boonchu Rojanastien hold?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Boonchu_Rojanastien> prop:party ?x . ?x onto:ideology ?uri . ?x rdf:type onto:PoliticalParty}
lcquad
What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:PLUS_Expressways prop:hubs ?uri }
lcquad
Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:music <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri prop:distributor <http://dbpedia.org/resource/Cinema_International_Corporatio...
lcquad
Is Henry David Thoreau interested in Politics?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Henry_David_Thoreau prop:mainInterests res:Politics }
lcquad
Among the companies who has product named Chinook who has a key person as Dennis Muilenburg ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri prop:products <http://dbpedia.org/resource/Boeing_CH-47_Chinook> . ?ur...
lcquad
Which country's leader is Giuseppe Bertello?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:leader <http://dbpedia.org/resource/Giuseppe_Bertello> . ?uri rdf:type onto:Country}
lcquad
Who wrote the subsequent work of One Day at a Time (Em's Version) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/One_Day_at_a_Time_(Em's_Version)> onto:subsequentWork ?x . ?x onto:writer ?uri . }
lcquad
Name the TV shows with network as NBC and company as Paramount Television ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:network <http://dbpedia.org/resource/NBC> . ?uri prop:company <http://dbpedia.org/resource/Paramount_Television> . ?uri rdf:type onto:T...
lcquad
Name the fictional character whose voice's animator is Hardie Gramatky?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:animator <http://dbpedia.org/resource/Hardie_Gramatky> . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}
lcquad
Which license provider of MSX basic is also the designer of Language Integrated Query ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri. res:MSX_BASIC prop:license ?uri}
lcquad
Who are the architect of the stadium whose one of the architect is louis D. Astorino ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:architect res:Louis_D._Astorino . ?x prop:architect ?uri . }
lcquad
Who are the astronauts associated with NASA?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:type <http://dbpedia.org/resource/NASA> . ?uri rdf:type onto:Astronaut}
lcquad
What is a common ingredient used in boyt Blodpalt and Kaszanka ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Blodpalt onto:ingredient ?uri. res:Kaszanka onto:ingredient ?uri . }
lcquad
Who is the partner of Rob Patterson?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Rob_Patterson . }
lcquad
How many politicians are there from the city of Ganges?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Ganges> prop:city ?x . ?x onto:leaderName ?uri . }
lcquad
To which american football teams does the Heinz Field serve as home stadium?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Heinz_Field prop:tenants ?uri }
lcquad
Which architect of the Marine Corps Air Station Kaneohe Bay is the branch of the Burnet R. Maybank?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri. res:Burnet_R._Maybank prop:branch ?uri}
lcquad
Which movies's screenplay is written by Akiva Goldsman
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:screenplay <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri rdf:type onto:Film}
lcquad
How many TV shows are similar to the ones belonging to fantasy genre?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre <http://dbpedia.org/resource/Fantasy_television> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Battle_of_Fort_Stephenson onto:commander ?uri. res:Battle_of_the_Thames onto:commander ?uri . }
lcquad
How many developers were involved in creating games whose score is composed by Gerard Marino?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:composer <http://dbpedia.org/resource/Gerard_Marino> . ?x onto:developer ?uri . }
lcquad
Which sea is surrounded by Rostock and Kaliningrad?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:cities <http://dbpedia.org/resource/Rostock> . ?uri prop:cities <http://dbpedia.org/resource/Kaliningrad> . ?uri rdf:type onto:Sea}
lcquad
Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:developer <http://dbpedia.org/resource/Brian_Graden> . ?uri prop:voices <http://dbpedia.org/resource/Isaac_Hayes> . ?uri rdf:type onto:...
lcquad
How did the child of Stevens T. Mason die?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stevens_Thomson_Mason_(Virginia)> onto:child ?x . ?x onto:deathCause ?uri . }
lcquad
Does the Ontario International Airport serve the Inland Empire?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Ontario_International_Airport prop:cityServed res:Inland_Empire }
lcquad
Is semnani one of the languages spoken in Iran?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Iran prop:languages res:Semnani_languages }
lcquad
What is the nickname of the home stadium of Angels Toru?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Angels_Toruń onto:homeStadium ?x . ?x prop:nickname ?uri . }
lcquad
What is the television show whose executive producer is Douglas Netter?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer <http://dbpedia.org/resource/Douglas_Netter> . ?uri rdf:type onto:TelevisionShow}
lcquad
List out the people who are related to the relatives of Jared Kushner ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jared_Kushner onto:relation ?x . ?x onto:relation ?uri . }
lcquad
List all the doctoral student of the scientist who has advised john Bowlby ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents <http://dbpedia.org/resource/John_Bowlby> . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}
lcquad
To which series does the book belong which came after the Blade Runner 2?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:previousWork res:Blade_Runner_2:_The_Edge_of_Human . ?x onto:series ?uri . }
lcquad
In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate prop:city ?uri }
lcquad
Where was Sino-French War fought ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sino-French_War> onto:territory ?uri }
lcquad
Who did Daniel Gibson marry?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:spouse res:Daniel_Gibson . }
lcquad
What is the political party of the daughter of Jawaharlal Nehru ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jawaharlal_Nehru onto:child ?x . ?x onto:party ?uri . }
lcquad
Name the river with source as Shannon Pot and its mouth is located in Limerick?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:source <http://dbpedia.org/resource/Shannon_Pot> . ?uri prop:mouthLocation <http://dbpedia.org/resource/Limerick> . ?uri rdf:type onto:...
lcquad
What is the organisation whose purposes are Environmentalism and Peace?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:purpose <http://dbpedia.org/resource/Environmentalism> . ?uri prop:purpose <http://dbpedia.org/resource/Peace> . ?uri rdf:type onto:Org...
lcquad
Count the number of sports team members which have player named Matt Williams ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:name <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x prop:name ?uri }
lcquad
How many different people own the Timeform award winners?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards <http://dbpedia.org/resource/Timeform> . ?x onto:owner ?uri . ?uri rdf:type onto:Person}
lcquad
What religions do diplomats typically follow?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Diplomacy . ?x prop:religion ?uri . }
lcquad
Guggenheim family is the cofounder of a company that invested stocks in which baseball teams?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:founder <http://dbpedia.org/resource/Guggenheim_family> . ?uri prop:owner ?x . ?uri rdf:type onto:BaseballTeam}
lcquad
Was John muir one of the first to ascend a mountain on Mt hoffmann?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Mount_Hoffmann onto:firstAscentPerson res:John_Muir }
lcquad
Which city is known for the people working in the western penn hospital?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions <http://dbpedia.org/resource/Western_Pennsylvania_Hospital> . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}
lcquad
In which country does the publishing house exist which was cofounded by Panos Loannides?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:founder <http://dbpedia.org/resource/Panos_Ioannides> . ?x prop:country ?uri . ?x rdf:type onto:Publisher}
lcquad
Name the team which is owned by Dafenham wind turbines and stood first in 1967 mexican Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri. res:Dagenham_wind_turbines prop:owner ?uri}
lcquad
Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Sidney_Catlin_Partridge prop:education ?uri. res:Lisa_Brummel onto:almaMater ?uri}
lcquad
What sports can be played in Kharghar's schools
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:city <http://dbpedia.org/resource/Kharghar> . ?x onto:sport ?uri . ?x rdf:type onto:School}
lcquad
Which ethinicity of Riley Reid is the state of origin of Holmes Colbert?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Riley_Reid prop:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri}
lcquad