question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which boarder country of Korean Peninsula was the state of Sodagreen ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Korean_Peninsula onto:border ?uri. res:Sodagreen onto:country ?uri}
julipc-p(huggingface)
Spanish harlem incident was composed by whom ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Spanish_Harlem_Incident onto:composer ?uri }
julipc-p(huggingface)
What sports are played at universities affiliated by States Colleges and Universities athletic association?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:affiliation <http://dbpedia.org/resource/State_Colleges_and_Universities_Athletic_Association> . ?x onto:sport ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
EU Broadcasting Union is the owner of the distributor of what?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:owner res:European_Broadcasting_Union . ?uri onto:distributor ?x . }
julipc-p(huggingface)
How many people were drafted in the LA Clippers?
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:draftTeam <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Which founding cities of Young Americans Bank is also the location of Denver Broncos ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Young_Americans_Bank prop:foundation ?uri. res:Denver_Broncos onto:locationCity ?uri}
julipc-p(huggingface)
Which famous physicist was academically advised by Benjamin Pulleyn?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor <http://dbpedia.org/resource/Benjamin_Pulleyn> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Which prospect team of Robin Kovacs is the draft team of Bob MacMillan ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri. res:Robin_Kovacs prop:prospectTeam ?uri}
julipc-p(huggingface)
Terry Pratchett has written about how many topics?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:author <http://dbpedia.org/resource/Terry_Pratchett> . ?x onto:nonFictionSubject ?uri . }
julipc-p(huggingface)
Which shows theme music is composed by a band which has Larry Lalonde in it?
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:bandMember <http://dbpedia.org/resource/Larry_LaLonde> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer <http://dbpedia.org/resource/Catarina_Lindgren> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
julipc-p(huggingface)
In how many regions is English American spoken?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/English_Americans> prop:region ?uri . }
julipc-p(huggingface)
Which baseball team is owned by Robert Nutting?
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:owner <http://dbpedia.org/resource/Robert_Nutting> . ?uri rdf:type onto:BaseballTeam}
julipc-p(huggingface)
What religion did Gamini Seneviratne follow?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gamini_Seneviratne onto:religion ?uri }
julipc-p(huggingface)
Which fictional character is portrayed by Roger Barton (film editor)?
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:portrayer <http://dbpedia.org/resource/Roger_Barton_(film_editor)> . ?uri rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
who are all the people who have managed the England's under 20 soccer team?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:managerClub <http://dbpedia.org/resource/England_national_under-20_football_team> }
julipc-p(huggingface)
Give the name of the river with source place as Australian Alps and has mouth place as Goolwa , a place in Siyuth Australia ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace <http://dbpedia.org/resource/Australian_Alps> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Goolwa,_South_Australia> . ?uri rdf:type onto:River}
julipc-p(huggingface)
Where were the doctoral students of James Langer born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:James_S._Langer onto:doctoralStudent ?x . ?x prop:placeOfBirth ?uri . }
julipc-p(huggingface)
Whose shrine is in aachen cathedral?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:majorShrine res:Aachen_Cathedral . }
julipc-p(huggingface)
What religions do politicians in the Korean Minjoo Party follow?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:party <http://dbpedia.org/resource/Minjoo_Party_of_Korea> . ?x onto:religion ?uri . ?x rdf:type onto:OfficeHolder}
julipc-p(huggingface)
What are the other band members of the band one of whose current member is Robert De Niro?
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:currentMembers <http://dbpedia.org/resource/Robert_De_Niro> . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}
julipc-p(huggingface)
Which peak was first scaled by Krzysztof Wielicki?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:firstAscentPerson res:Krzysztof_Wielicki }
julipc-p(huggingface)
Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests <http://dbpedia.org/resource/Michael_Cristofer> . ?x prop:guests ?uri }
julipc-p(huggingface)
How many factions were fighting in the wars where Blue Jacket was a commander?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander <http://dbpedia.org/resource/Blue_Jacket> . ?x prop:combatant ?uri . }
julipc-p(huggingface)
who was the president under which Joe Purcell is a lieutenant?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:lieutenant res:Joe_Purcell }
julipc-p(huggingface)
Which headcoach of Marquette Golden Eagles men's basketball team, 2008-09 was also the coach of Marquette Golden Eagles team ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri. <http://dbpedia.org/resource/2008–09_Marquette_Golden_Eagles_men's_basketball_team> prop:headcoach ?ur...
julipc-p(huggingface)
List the state of the universities whose nation is United States ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:country <http://dbpedia.org/resource/United_States> . ?x onto:state ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
What city is the place of birth of Alexander Morozevich which is also the official residence of Dmitri Nossov ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Alexander_Morozevich onto:birthPlace ?uri. res:Dmitri_Nossov prop:residence ?uri}
julipc-p(huggingface)
What is the television show whose executive producer is Steven Peterman?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:executiveProducer <http://dbpedia.org/resource/Steven_Peterman> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Which military battles are associated with Israel?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:place <http://dbpedia.org/resource/Israel> . ?uri rdf:type onto:MilitaryConflict}
julipc-p(huggingface)
What are some magazines whose publishers are themselves Rock and Roll Hall of Fame members?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:award <http://dbpedia.org/resource/Rock_and_Roll_Hall_of_Fame> . ?uri onto:publisher ?x . ?uri rdf:type onto:Magazine}
julipc-p(huggingface)
What are the veneration of the one for which there's a major shrine in Hebron?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine res:Hebron . ?x prop:veneratedIn ?uri . }
julipc-p(huggingface)
What is the home town of the band which is the artist of Your Ice Cream's Dirty ?
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/Your_Ice_Cream's_Dirty> prop:artist ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}
julipc-p(huggingface)
Who is the chancellor of the university which affiliates the Dartington College of Arts?
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:affiliations <http://dbpedia.org/resource/Dartington_College_of_Arts> . ?x prop:chancellor ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
What is the nationality of Sune Agerschou ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Sune_Agerschou onto:nationality ?uri }
julipc-p(huggingface)
What is the PLACE OF DEATH of Charles Gordon (artist) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Gordon_(artist)> prop:placeOfDeath ?uri }
julipc-p(huggingface)
Namt the fields of Paul Demiville ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri }
julipc-p(huggingface)
Which battle is Jim Jones associated with to which Allen Boyd is also associated ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Jones_(judge)> onto:battle ?uri. <http://dbpedia.org/resource/Allen_Boyd> prop:battles ?uri}
julipc-p(huggingface)
Who all have been canonized by Pope Paul VI
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:canonizedBy res:Pope_Paul_VI }
julipc-p(huggingface)
Where is the tombstone of the congressman who died in the McLean 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 onto:deathPlace <http://dbpedia.org/resource/McLean_Hospital> . ?x prop:restingplace ?uri . ?x rdf:type onto:Congressman}
julipc-p(huggingface)
What is written in a programming language developed by GNOME Project?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:developer res:The_GNOME_Project . ?uri prop:programmingLanguage ?x . }
julipc-p(huggingface)
Which race is the Best Mate is also the race of the Martin Molony?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Best_Mate prop:race ?uri. res:Martin_Molony onto:race ?uri}
julipc-p(huggingface)
Where is the building located whose architect was Francis Palmer Smith?
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:architect <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?x prop:address ?uri . ?x rdf:type onto:Building}
julipc-p(huggingface)
Who operates the bridges designed by Malaysian PWD?
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/Malaysian_Public_Works_Department> . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}
julipc-p(huggingface)
Where was the person born whose successor was Le Hong Phong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:successor res:Lê_Hồng_Phong . ?x prop:birthPlace ?uri . }
julipc-p(huggingface)
List all important people of the non profit organization which has Hilary Clinton as a key person ?
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:keyPeople <http://dbpedia.org/resource/Hillary_Clinton> . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}
julipc-p(huggingface)
List the school of Bobby Skinstad?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bobby_Skinstad prop:school ?uri }
julipc-p(huggingface)
Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?
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:champion <http://dbpedia.org/resource/2015_Alabama_Crimson_Tide_football_team> . ?uri prop:athletics ?x . ?uri rdf:type onto:Unive...
julipc-p(huggingface)
List the base currency of the country whose anthem is Oj, svijetla majska zoro.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:anthem <http://dbpedia.org/resource/Oj,_svijetla_majska_zoro> . ?x prop:currency ?uri . }
julipc-p(huggingface)
What magazine is Marritt Cabal known for which has Lucifer Hammer as publisher ?
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}
julipc-p(huggingface)
Name the parent company of Ford Falcon Cobra ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri }
julipc-p(huggingface)
How many players are in the San Francisco Giants?
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:team <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri rdf:type onto:Athlete}
julipc-p(huggingface)
Which place of Geography Club is the location of Seattle Great Wheel ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Seattle_Great_Wheel> prop:locationTown ?uri. <http://dbpedia.org/resource/Geography_Club_(play)> prop:place ?uri}
julipc-p(huggingface)
How many races has Best Mate won?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Best_Mate> prop:race ?uri . }
julipc-p(huggingface)
Which governor of Charles Willing had a child named John Scott ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:governor res:Charles_Willing_Byrd . ?uri onto:child res:John_Scott_Harrison . }
julipc-p(huggingface)
List the relatives of Lyubov Dostoyevskaya ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lyubov_Dostoyevskaya prop:relatives ?uri }
julipc-p(huggingface)
What is the military rank of the important commander of Peruvian Army?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Peruvian_Army onto:notableCommander ?x . ?x onto:militaryRank ?uri . }
julipc-p(huggingface)
Which units are garrisoned at Arlington County, Virginia?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:garrison <http://dbpedia.org/resource/Arlington_County,_Virginia> }
julipc-p(huggingface)
In how many different places have ehtics philosophers died?
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:mainInterests <http://dbpedia.org/resource/Ethics> . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
Who is the fictional character who starred in The Dognapper?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:voice <http://dbpedia.org/resource/The_Dognapper> . ?uri rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
Who is the developer of Dart (programming language) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dart_(programming_language)> prop:developer ?uri }
julipc-p(huggingface)
Which house has published books about Jazz?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:nonFictionSubject <http://dbpedia.org/resource/Jazz> . ?x onto:publisher ?uri . ?x rdf:type onto:Book}
julipc-p(huggingface)
Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)> prop:narrated ?uri. <http://dbpedia.org/resource/Tales_of_Suspense> prop:writers ?uri}
julipc-p(huggingface)
Who are the parents of writers born and bred in Buckinghamshire?
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:homeTown <http://dbpedia.org/resource/Buckinghamshire> . ?x onto:parent ?uri . ?x rdf:type onto:Writer}
julipc-p(huggingface)
List down the common sports played by PATTS College of Aeronautics and lytechnic University of the Philippines Taguig ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}
julipc-p(huggingface)
How many companies have built concrete bridges?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:material <http://dbpedia.org/resource/Concrete> . ?x onto:builder ?uri . }
julipc-p(huggingface)
How many movies have been directed by almunies of Parsons School of Design?
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:education <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri onto:director ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Count the number of sport played by the school which also plays Association football ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport <http://dbpedia.org/resource/Association_football> . ?x onto:sport ?uri }
julipc-p(huggingface)
Which countries militaries fought the SFOR battle?
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/SFOR> . ?x onto:battle ?uri . ?x rdf:type onto:MilitaryPerson}
julipc-p(huggingface)
List the people died in Hyderabad and are a member of political party ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Hyderabad . ?x onto:party ?uri . }
julipc-p(huggingface)
What is the american football league whose champion is from Kansas City, Missouri?
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/Kansas_City,_Missouri> . ?uri prop:champion ?x . ?uri rdf:type onto:AmericanFootballLeague}
julipc-p(huggingface)
How many thesis were supervised by Ernest Rutherford?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:doctoralAdvisor <http://dbpedia.org/resource/Ernest_Rutherford> . }
julipc-p(huggingface)
Who is the publisher of the comic, one of whose authors is Kentaro Takekuma ?
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:writers <http://dbpedia.org/resource/Kentaro_Takekuma> . ?x prop:publisher ?uri . ?x rdf:type onto:Comic}
julipc-p(huggingface)
List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?
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:doctoralAdvisor <http://dbpedia.org/resource/Ernest_Rutherford> . ?uri prop:knownFor <http://dbpedia.org/resource/Manhattan_Project> . ?...
julipc-p(huggingface)
Where is the garrison of Western Naval Command ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Western_Naval_Command prop:garrison ?uri }
julipc-p(huggingface)
What is the political party of the of 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 . }
julipc-p(huggingface)
Which city's mayor is married to Jean Marc Germain?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:spouse <http://dbpedia.org/resource/Jean-Marc_Germain> . ?uri prop:mayor ?x . }
julipc-p(huggingface)
Which person's successor is Samsu-iluna?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:successor <http://dbpedia.org/resource/Samsu-iluna> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Where do the sister stations of Al Khaleejiya 100.9 play?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations res:Al_Khaleejiya_100.9 . ?x prop:location ?uri . }
julipc-p(huggingface)
Name the sports played by Jamiatu Muslim Mindanao?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri }
julipc-p(huggingface)
List the party of the office holder which also has the affiliation with Congress Socialist party ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:otherParty <http://dbpedia.org/resource/Congress_Socialist_Party> . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}
julipc-p(huggingface)
What is the nickname of the city where Tuba Dei lives?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tuba_Dei prop:city ?x . ?x prop:nickname ?uri . }
julipc-p(huggingface)
From how many different places did the weapons used in the American Indian wars originate?
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:usedInWar <http://dbpedia.org/resource/American_Indian_Wars> . ?x prop:origin ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
Name the office holder whose alma mater is Harvard-Westlake School and resting place is Alta Mesa Memorial Park?
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:restingPlace <http://dbpedia.org/resource/Alta_Mesa_Memorial...
julipc-p(huggingface)
Name the rive whose mouth is located in Limerick and location is Dowra?
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/Limerick> . ?uri prop:sourceLocation <http://dbpedia.org/resource/Dowra> . ?uri rdf:type onto...
julipc-p(huggingface)
How many sports are played in maharashtran schools?
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:state <http://dbpedia.org/resource/Maharashtra> . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}
julipc-p(huggingface)
What is the citizenship of Ren Romano ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri }
julipc-p(huggingface)
Which magazine's publisher is Jann Wenner and founded by Ralph J. Gleason?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:publisher <http://dbpedia.org/resource/Jann_Wenner> . ?uri onto:founder <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri rdf:type onto:Magazine}
julipc-p(huggingface)
Where did chancellor served by Rudolf Kirchschlger die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Rudolf_Kirchschläger prop:chancellor ?x . ?x onto:deathPlace ?uri . }
julipc-p(huggingface)
How many owners owned the clubs participating in the Premier leagues of '14?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season <http://dbpedia.org/resource/2014–15_Premier_League> . ?x prop:owner ?uri . }
julipc-p(huggingface)
How many people live in the Beverly Hills, California?
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:residence <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Name some islands in a pacific archipelago?
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:location <http://dbpedia.org/resource/Pacific_Ocean> . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}
julipc-p(huggingface)
For how many movies have the music composer composed music, who have collaborated with Yes ?
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:associatedMusicalArtist <http://dbpedia.org/resource/Yes_(band)> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Name the driver who had a pole finish in 1989 Portuguese Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri }
julipc-p(huggingface)
Jeff Munn is the president of which basketball team ?
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:president <http://dbpedia.org/resource/Jeff_Munn> . ?uri rdf:type onto:BasketballTeam}
julipc-p(huggingface)
In how many areas do the networks broadcast, which also broadcasts in North Carolina?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea <http://dbpedia.org/resource/North_Carolina> . ?x prop:area ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
Name the sovereign state of Wallington railway station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wallington_railway_station onto:country ?uri }
julipc-p(huggingface)
Which terrotory of Tonkin campaign also the death bed of Thophane Vnard ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri. res:Théophane_Vénard onto:deathPlace ?uri}
julipc-p(huggingface)
Where does the Giannis Alafouzos originate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Giannis_Alafouzos onto:stateOfOrigin ?uri }
julipc-p(huggingface)
What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elżbieta_Czartoryska_(1905–1989)> prop:deathPlace ?uri. <http://dbpedia.org/resource/Charles_Journet> onto:birthPlace ?uri}
julipc-p(huggingface)