question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Where the club of Kiki Cutter located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Kiki_Cutter prop:club ?x . ?x onto:location ?uri . } | julipc-p(huggingface) |
List the awards won by the wife of Ingrid von Rosen. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Ingrid_von_Rosen prop:spouse ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
Which current Michigan Wolverines team member debuted in Chicago Bears ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:debutteam res:Chicago_Bears . ?uri prop:currentteam res:Michigan_Wolverines . } | julipc-p(huggingface) |
List the movie whose 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 onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri onto:distributor <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which musical artists have collaborated with Waylon Jennings? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Waylon_Jennings> . ?uri rdf:type onto:MusicalArtist} | julipc-p(huggingface) |
What is the Nickname of the school where Jeff Hornacek studied ? | 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/Jeff_Hornacek> prop:highschool ?x . ?x prop:nickname ?uri . ?x rdf:type onto:School} | julipc-p(huggingface) |
Where did the people canonized by John Paul II die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:canonizedBy res:Pope_John_Paul_II . ?x prop:deathPlace ?uri . } | julipc-p(huggingface) |
Who is the owner of Ford Motor Credit comapny which is also the builder of FORD SHO V8 engine ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ford_Motor_Credit_Company prop:owner ?uri. res:Ford_SHO_V8_engine onto:manufacturer ?uri} | julipc-p(huggingface) |
Count the different genres of games published by Titus Software | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher <http://dbpedia.org/resource/Titus_Software> . ?x onto:genre ?uri . } | julipc-p(huggingface) |
Who has produced movies that have a James Horner score? | 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:music <http://dbpedia.org/resource/James_Horner> . ?x prop:producer ?uri . ?x rdf:type onto:Film} | julipc-p(huggingface) |
Which movie produced by Michael Deeley was distributed by Warner Bros ? | 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:distributor <http://dbpedia.org/resource/Warner_Bros.> . ?uri prop:producer <http://dbpedia.org/resource/Michael_Deeley> . ?uri rdf:type... | julipc-p(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 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/resource/Sharon_Marley> . ?uri rdf:type onto:P... | julipc-p(huggingface) |
Which shows are voiced be US citizens? | 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:stateOfOrigin <http://dbpedia.org/resource/United_States> . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Count the different places where the people died, who were born in England? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/England> . ?x prop:placeOfDeath ?uri . } | julipc-p(huggingface) |
What are some relatives of Battle of the Bulge veterans? | 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:battles <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x onto:relation ?uri . ?x rdf:type onto:MilitaryPerson} | julipc-p(huggingface) |
How many different genres of games are produced by Blizzard? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:developer <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x prop:genre ?uri . } | julipc-p(huggingface) |
Which tennis players live in Kenthurst, new south wales? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:residence <http://dbpedia.org/resource/Kenthurst,_New_South_Wales> . ?uri rdf:type onto:TennisPlayer} | julipc-p(huggingface) |
How many things are located in Ridgewood, New Jersey? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:birthPlace <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . } | julipc-p(huggingface) |
Name the sea whose inflow is Kemijoki and outflow is Danish straits? | 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:inflow <http://dbpedia.org/resource/Kemijoki> . ?uri prop:outflow <http://dbpedia.org/resource/Danish_straits> . ?uri rdf:type onto:Sea} | julipc-p(huggingface) |
What award was won by executive producer of Shaun the Sheep? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Shaun_the_Sheep onto:executiveProducer ?x . ?x onto:award ?uri . } | julipc-p(huggingface) |
What is the operator of SR class 3Sub ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:SR_class_3Sub onto:operator ?uri } | julipc-p(huggingface) |
Which key person of the Clinton Foundation is also the president of Edward J. Perkins ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Edward_J._Perkins onto:president ?uri. res:Clinton_Foundation prop:keyPeople ?uri} | julipc-p(huggingface) |
Name the royalty whose daughter was Cleopatra V and was married to Ptolemy XIV of Egypt? | 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:mother <http://dbpedia.org/resource/Cleopatra_V_of_Egypt> . ?uri onto:spouse <http://dbpedia.org/resource/Ptolemy_XIV_of_Egypt> . ?uri r... | julipc-p(huggingface) |
How many times has Jeff Conaway been casted? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:starring <http://dbpedia.org/resource/Jeff_Conaway> . } | julipc-p(huggingface) |
who are some miss michigan usa? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:title res:Miss_Michigan_USA . } | julipc-p(huggingface) |
What nicknames do the universities in Norton, Massachusetts have? | 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:city <http://dbpedia.org/resource/Norton,_Massachusetts> . ?x prop:nickname ?uri . ?x rdf:type onto:University} | julipc-p(huggingface) |
Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Apple_Productivity_Experience_Group onto:product ?uri} | julipc-p(huggingface) |
What is the regional radio sports network associated with? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Regional_Radio_Sports_Network prop:affiliations ?uri } | julipc-p(huggingface) |
List the destinations of the airlines which also serves Mediterranean 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 { ?x prop:destinations <http://dbpedia.org/resource/Mediterranean_Sea> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline} | julipc-p(huggingface) |
Which fictional character's portrayer was edited by Roger Barton? | 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:editing <http://dbpedia.org/resource/Roger_Barton_(film_editor)> . ?uri onto:portrayer ?x . ?uri rdf:type onto:FictionalCharacter} | julipc-p(huggingface) |
What can be cooked out of things belonging to the order Sapindales? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:order res:Sapindales . ?uri onto:ingredient ?x . } | julipc-p(huggingface) |
What is the birth place of the children of Miguel Garca Granados ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Miguel_García_Granados prop:children ?x . ?x onto:birthPlace ?uri . } | julipc-p(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 } | julipc-p(huggingface) |
List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Victor_Hope,_2nd_Marquess_of_Linlithgow> prop:primeminister ?uri } | julipc-p(huggingface) |
Where do the airlines garrisoned at Manchester airport fly to? | 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:headquarter <http://dbpedia.org/resource/Manchester_Airport> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline} | julipc-p(huggingface) |
What all is owned by a company one of whose division is Paramount Domestic Television? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:division res:Paramount_Domestic_Television . ?uri prop:company ?x . } | julipc-p(huggingface) |
Name the language of I Love How You Love Me ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:I_Love_How_You_Love_Me prop:language ?uri } | julipc-p(huggingface) |
Count the number of places where alumini of Edinburgh university have died? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education <http://dbpedia.org/resource/University_of_Edinburgh> . ?x onto:deathPlace ?uri . } | julipc-p(huggingface) |
Which label released the movie written by Thomas Meehan? | 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:writer <http://dbpedia.org/resource/Thomas_Meehan_(writer)> . ?x prop:label ?uri . ?x rdf:type onto:Film} | julipc-p(huggingface) |
What is the venue of Indy PopCon ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Indy_PopCon prop:venue ?uri } | julipc-p(huggingface) |
Who are the associate musical artists of Dalma Kovcs ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Dalma_Kovács onto:associatedMusicalArtist ?uri } | julipc-p(huggingface) |
What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak? | 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} | julipc-p(huggingface) |
Name a person whose sucessor was Adrian A. basora and was educated at Harvard-Westlake School? | 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:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri prop:successor <http://dbpedia.org/resource/Adrian_A._Basora> . ?... | julipc-p(huggingface) |
Name the other party of Chandra Shekhar ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Chandra_Shekhar onto:otherParty ?uri } | julipc-p(huggingface) |
How many movies have had a cinematographer who died in US? | 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:deathPlace <http://dbpedia.org/resource/United_States> . ?uri prop:cinematography ?x . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2? | 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/The_Ultimate_Fighter:_Brazil_2> onto:subsequentWork ?x . ?x prop:city ?uri . ?x rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
What actor of Le Cirque is a relative of Maryanne Trump barry? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Le_Cirque:_A_Table_in_Heaven prop:starring ?uri. res:Maryanne_Trump_Barry onto:relation ?uri} | julipc-p(huggingface) |
Who is the label of The Producers (2005 film) ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Producers_(2005_film)> prop:label ?uri } | julipc-p(huggingface) |
Which nearest city of LoDaisKa Site is also the location of Oskar Blues Brewery ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri. res:Oskar_Blues_Brewery prop:location ?uri} | julipc-p(huggingface) |
Count the number of different religions that field marshals have followed? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank <http://dbpedia.org/resource/Field_marshal> . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Count the awards given to the recepients of the Becket fund for religious liberty. | 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 . } | julipc-p(huggingface) |
Which river flows through Central Washington? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Central_Washington onto:river ?uri } | julipc-p(huggingface) |
List all the narrator of the albums which had Alan Barzman as one of the narrator ? | 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:narrated <http://dbpedia.org/resource/Alan_Barzman> . ?x prop:narrated ?uri . ?x rdf:type onto:Album} | julipc-p(huggingface) |
People born in Saint-Amand-en-Puisaye are famous for what things ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Saint-Amand-en-Puisaye> . ?x prop:knownFor ?uri . } | julipc-p(huggingface) |
Which founder of European School, karlsruhe is also the jursdiction of Eurpoean Border of Coast guard ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Border_and_Coast_Guard> prop:jurisdiction ?uri. <http://dbpedia.org/resource/European_School,_Karlsruhe> prop:founder ?uri} | julipc-p(huggingface) |
What cars were built upon the cars which were assembled in Canada? | 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:assembly <http://dbpedia.org/resource/Canada> . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile} | julipc-p(huggingface) |
How many religions are followed by the people in the Royal Thai Army? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch <http://dbpedia.org/resource/Royal_Thai_Army> . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Which politicians live in a city led by T.S. Thakur? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:leader res:T._S._Thakur . ?uri onto:residence ?x . } | julipc-p(huggingface) |
How many guests have been there on broadway? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> prop:guests ?uri . } | julipc-p(huggingface) |
List the significant buildings of the arch. whose one of the important work is Government Building, Kiev ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding <http://dbpedia.org/resource/Government_Building,_Kiev> . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect} | julipc-p(huggingface) |
Count everything garrisoned at the pentagon? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:garrison <http://dbpedia.org/resource/The_Pentagon> . } | julipc-p(huggingface) |
What common relegion affiliation exists for udit Raj and Wickramabahu Central College ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Udit_Raj> onto:religion ?uri. <http://dbpedia.org/resource/Wickramabahu_Central_College_(National_School)> prop:religiousAffiliation ?uri} | julipc-p(huggingface) |
What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_MLS_All-Star_Game> prop:city ?uri. <http://dbpedia.org/resource/The_Okee_Dokee_Brothers> onto:birthPlace ?uri} | julipc-p(huggingface) |
How many people were opponents of the ones buried in the tower of London? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingPlace <http://dbpedia.org/resource/Tower_of_London> . ?x onto:opponent ?uri . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
Count all the places where companies located in Ontario operate. | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity <http://dbpedia.org/resource/Ontario> . ?x prop:locations ?uri . } | julipc-p(huggingface) |
What is the river whose origin is North-Western Province, Zambia? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> } | julipc-p(huggingface) |
How many factions have fought when Egushawa was a commander? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander <http://dbpedia.org/resource/Egushawa> . ?x prop:combatant ?uri . } | julipc-p(huggingface) |
What is the honorary title of the narrator of Everything Will Be OK? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Everything_Will_Be_OK onto:narrator ?x . ?x onto:award ?uri . } | julipc-p(huggingface) |
What is the layout of the automobiles designed by Olivier Boulay? | 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:designer <http://dbpedia.org/resource/Olivier_Boulay> . ?x onto:layout ?uri . ?x rdf:type onto:Automobile} | julipc-p(huggingface) |
What people were born in Ridgewood, New Jersey? | 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:birthPlace <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Laura_K._Ipsen onto:occupation ?uri} | julipc-p(huggingface) |
Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> prop:predecessor ?uri. <http://dbpedia.org/resource/Oddworld:_Munch's_Oddysee> onto:developer ?uri} | julipc-p(huggingface) |
Who is the appointer of Charles Goodell ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Charles_Goodell onto:appointer ?uri } | julipc-p(huggingface) |
Which distributer of Glover is also the stockholde of Seattle Mariners ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Glover_(video_game)> onto:distributor ?uri. <http://dbpedia.org/resource/Seattle_Mariners> onto:owner ?uri} | julipc-p(huggingface) |
Name the person whose mother name is Cedella Booker and has a son named Sharon Marley? | 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:parent <http://dbpedia.org/resource/Cedella_Booker> . ?uri prop:children <http://dbpedia.org/resource/Sharon_Marley> . ?uri rdf:type ont... | julipc-p(huggingface) |
Name the Chris Marve's school ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Chris_Marve onto:school ?uri } | julipc-p(huggingface) |
List the websites which the authors of Tornado own ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tornado_(web_server)> prop:author ?x . ?x onto:owner ?uri . } | julipc-p(huggingface) |
What are the movies whose music composer is Akira Ifukube? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer <http://dbpedia.org/resource/Akira_Ifukube> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which military personnel belong to the branch of Continental Army? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch res:Continental_Army } | julipc-p(huggingface) |
Who have rented the stadium operated by Maple Leaf S&E? | 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:operator <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium} | julipc-p(huggingface) |
Which holy things canonized John of Damascus? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:John_of_Damascus onto:canonizedBy ?uri } | julipc-p(huggingface) |
Solon Spencer Beman has architected in how many cities? | 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:architect <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x prop:locationTown ?uri . ?uri rdf:type onto:City} | julipc-p(huggingface) |
What are the main interests of Timothy Morton? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Timothy_Morton prop:mainInterests ?uri } | julipc-p(huggingface) |
Name someone known for a project involved in the Occupation of Japan? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:battle res:Occupation_of_Japan . ?uri prop:knownFor ?x . } | julipc-p(huggingface) |
Count all those who previously played for a team which ownes Varsity Stadium ? | 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 . } | julipc-p(huggingface) |
Name the sea with Helsinki as one of the shore city and is also an outflow for Danish straits? | 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/Helsinki> . ?uri prop:outflow <http://dbpedia.org/resource/Danish_straits> . ?uri rdf:type onto:Sea} | julipc-p(huggingface) |
Count the awards won by the people who graduated from the National and Kapodistrian University of Athens. | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x onto:award ?uri . } | julipc-p(huggingface) |
What awards have been given to the dude who made Shaun the Sheep? | 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:notableworks <http://dbpedia.org/resource/Shaun_the_Sheep> . ?x onto:award ?uri . ?x rdf:type onto:Person} | julipc-p(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 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} | julipc-p(huggingface) |
What are the movies with Daniel Waters as screenwriter? | 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/Daniel_Waters_(screenwriter)> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which awards are presented by the committee located in Stockholm? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:headquarters res:Stockholm . ?uri onto:presenter ?x . } | julipc-p(huggingface) |
What is the common product of the Apple Productivity Experience Group and services of the 21Vianet ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri. res:21Vianet prop:services ?uri} | julipc-p(huggingface) |
Who are the tenants of MasterCard Centre? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri } | julipc-p(huggingface) |
Count the area of the radio stations whose serves in South Carolina ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area <http://dbpedia.org/resource/South_Carolina> . ?x prop:area ?uri } | julipc-p(huggingface) |
How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_of_Higher_Learning> . ?x onto:sport ?uri . } | julipc-p(huggingface) |
Which adminstrative region of Lawrence F. Cafero is also the resting place of Samuel Keeler ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Lawrence_F._Cafero onto:region ?uri. res:Samuel_Keeler onto:restingPlace ?uri} | julipc-p(huggingface) |
Who studied in universities located in suburbs? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:campus res:Suburb . ?uri prop:education ?x . } | julipc-p(huggingface) |
List down the cinematographers of Mickey's Mellerdrammer? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> prop:cinematography ?uri } | julipc-p(huggingface) |
List the relative of Tim Nanai-Williams ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tim_Nanai-Williams> onto:relative ?uri } | julipc-p(huggingface) |
Who are the judges of the television show whose anchor is Josh Groban? | 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:presenter <http://dbpedia.org/resource/Josh_Groban> . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.