question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What are the books written by the the person who made the Novelas ejemplares?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:notableWork <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri onto:author ?x . ?uri rdf:type onto:Book}
julipc-p(huggingface)
Count the total number of battles fought by the military people which fought in Levant ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/Levant> . ?x prop:battles ?uri }
julipc-p(huggingface)
How many subjects have been covered in fantasy novels?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:literaryGenre <http://dbpedia.org/resource/Fantasy> . ?x onto:nonFictionSubject ?uri . }
julipc-p(huggingface)
What is the television show whose theme music is by Primus?
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:themeMusicComposer <http://dbpedia.org/resource/Primus_(band)> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
which person created the women in the garden?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Women_in_the_Garden prop:artist ?uri }
julipc-p(huggingface)
Who is the composer of Girl from the North Country ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Girl_from_the_North_Country onto:composer ?uri }
julipc-p(huggingface)
What is the county seat of the county which has an Evergreen High School?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evergreen_High_School_(King_County,_Washington)> onto:county ?x . ?x onto:countySeat ?uri . }
julipc-p(huggingface)
Which wars were fought by the commander whose deputy was Robert T. Herres?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deputy <http://dbpedia.org/resource/Robert_T._Herres> . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}
julipc-p(huggingface)
Through which states does the road go, which has a junction on Keningston Maryland?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction <http://dbpedia.org/resource/Kensington,_Maryland> . ?x onto:state ?uri . ?x rdf:type onto:Road}
julipc-p(huggingface)
What did the people buried in Toronto die of?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace res:Toronto . ?x onto:deathCause ?uri . }
julipc-p(huggingface)
List the main ingredient of Pizza-ghetti ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pizza-ghetti> prop:mainIngredient ?uri }
julipc-p(huggingface)
List the work institute of the medicians who has also worked at University of Miami ?
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/University_of_Miami> . ?x prop:workInstitutions ?uri . ?x rdf:type onto:Medician}
julipc-p(huggingface)
How many people have trained the wrestlers who were billed in Wisconsin?
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:billed <http://dbpedia.org/resource/Wisconsin> . ?x onto:trainer ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Which country did the prime minister belong to who was served by Thanong Bidaya ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Thanong_Bidaya prop:primeminister ?x . ?x onto:nationality ?uri . }
julipc-p(huggingface)
Which shareholder of Dagenham wind turbines is also the parent company of the Ford Falcon Cobra?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri. res:Dagenham_wind_turbines prop:owner ?uri}
julipc-p(huggingface)
List the awards won by the cinematographer of Mickey's Mellerdrammer?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> prop:cinematography ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
tell me the school to which Cyril Hume went?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Cyril_Hume prop:education ?uri }
julipc-p(huggingface)
where did Boga originate?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boga_(soft_drink)> prop:origin ?uri }
julipc-p(huggingface)
Who is the singer of the album which has a song Me and My arrow ?
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/Me_and_My_Arrow> onto:album ?x . ?x prop:narrated ?uri . ?x rdf:type onto:Album}
julipc-p(huggingface)
In how many different places can I fnd Modern Architectural buildings?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architecturalStyle <http://dbpedia.org/resource/Modern_architecture> . ?x prop:address ?uri . }
julipc-p(huggingface)
Which sports are played in the alma mater of Habib Boromand Dashghapu?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Habib_Boromand_Dashghapu prop:almaMater ?x . ?x onto:sport ?uri . }
julipc-p(huggingface)
What are the houses of Parliament Security Services ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Parliament_Security_Services prop:houses ?uri }
julipc-p(huggingface)
Count the origin of the beverages which have been originated in england /
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:origin <http://dbpedia.org/resource/England> . ?x prop:origin ?uri }
julipc-p(huggingface)
Count the number of people became famous for when Andrew Jackson was a commander ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander <http://dbpedia.org/resource/Andrew_Jackson> . ?uri onto:knownFor ?x . }
julipc-p(huggingface)
Who is the incumbent of Al Gore presidential campaign of 2000 ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al_Gore_presidential_campaign,_2000> onto:incumbent ?uri }
julipc-p(huggingface)
Of the places where Kurt Vonnegut Memorial Library exists, where did Louis LeCocq die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kurt_Vonnegut_Memorial_Library onto:location ?uri. res:Louis_LeCocq prop:placeOfDeath ?uri}
julipc-p(huggingface)
What is the college of the basketball player who lives in Ashton Historic district?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Ashton_Historic_District> . ?x prop:college ?uri . ?x rdf:type onto:BaseballPlayer}
julipc-p(huggingface)
During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:title <http://dbpedia.org/resource/Kingdom_of_Israel_(united_monarchy)> }
julipc-p(huggingface)
What is the person known for who is the movie director of Sleepy-Time Squirrel ?
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/Sleepy-Time_Squirrel> prop:director ?x . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
What is the title of the successor of Kaulahea I ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Kaulahea_I prop:successor ?x . ?x prop:title ?uri . }
julipc-p(huggingface)
Name the river passing through Reading Berkshire and has mouth place at 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:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Essex> . ?uri rdf:type onto:River}
julipc-p(huggingface)
Which nation is the origin of Dornier Aerodyne ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Dornier_Aerodyne prop:nationalOrigin ?uri }
julipc-p(huggingface)
Name some politicians buried in a place near Orange Virginia?
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:nearestCity <http://dbpedia.org/resource/Orange,_Virginia> . ?uri prop:restingplace ?x . ?uri rdf:type onto:OfficeHolder}
julipc-p(huggingface)
Which writer of Tales of Suspense is also the writer of karakuri Dji Ultimo ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tales_of_Suspense prop:writers ?uri. res:Karakuri_Dôji_Ultimo prop:author ?uri}
julipc-p(huggingface)
Which type of building is Qun Thnh Temple ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Quán_Thánh_Temple prop:buildingType ?uri }
julipc-p(huggingface)
Who is the artist of the album which has the song I Can't Change the World ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> prop:album ?x . ?x prop:artist ?uri . }
julipc-p(huggingface)
Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> onto:routeStart ?uri. <http://dbpedia.org/resource/Ilya_Savelev> onto:birthPlace ?uri}
julipc-p(huggingface)
List TV shows with producer as Erik Bork and company is DreamWorks Television ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:company <http://dbpedia.org/resource/DreamWorks_Television> . ?uri onto:producer <http://dbpedia.org/resource/Erik_Bork> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
In which cities do some railways operated by Russian railways start?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy res:Russian_Railways . ?x onto:routeStart ?uri . }
julipc-p(huggingface)
Collaborators of Demis Roussos have composed music for which movies?
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:associatedActs <http://dbpedia.org/resource/Demis_Roussos> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
In how many places are the tombs of everyone who died in England?
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:placeOfDeath <http://dbpedia.org/resource/England> . ?x prop:placeOfBurial ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
Where did the people beatified by Pope Pius X die?
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:beatifiedBy <http://dbpedia.org/resource/Pope_Pius_X> . ?x prop:deathPlace ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Name all the venues of the convention which has also been hosted in San Diego Convention ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:venue res:San_Diego_Convention_Center . ?x prop:venue ?uri . }
julipc-p(huggingface)
Brian Dunkleman is the presenter of what TV show?
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:presenter <http://dbpedia.org/resource/Brian_Dunkleman> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What are the movies whose distributor's headquarters is New York?
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:headquarters <http://dbpedia.org/resource/New_York> . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Count the different genres of music made by Argentinian bands?
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:hometown <http://dbpedia.org/resource/Argentina> . ?x onto:genre ?uri . ?uri rdf:type onto:MusicGenre}
julipc-p(huggingface)
What beverage was launched by Ferrero SpA?
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:creator <http://dbpedia.org/resource/Ferrero_SpA> . ?uri rdf:type onto:Food}
julipc-p(huggingface)
How many famous people are from the Filipinos?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:stateOfOrigin <http://dbpedia.org/resource/Filipinos> . }
julipc-p(huggingface)
How many people have managed a club which owns the Riverside Stadium?
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:ground <http://dbpedia.org/resource/Riverside_Stadium> . ?uri onto:managerClub ?x . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Who was the parent of person whose child is William C P breckinridge?
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:children <http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge> . ?x onto:parent ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Through which states does the stream ending at Saunders county go?
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:mouthLocation <http://dbpedia.org/resource/Saunders_County,_Nebraska> . ?x onto:state ?uri . ?x rdf:type onto:Stream}
julipc-p(huggingface)
What are the school mascots in Blytheville school district?
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:district <http://dbpedia.org/resource/Blytheville_School_District> . ?x prop:mascot ?uri . ?x rdf:type onto:School}
julipc-p(huggingface)
Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri onto:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Count the religions followed by people living in British Columbia.
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:residence <http://dbpedia.org/resource/British_Columbia> . ?x prop:religion ?uri . }
julipc-p(huggingface)
List some teammates of Ndonga Mianga?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:currentMember res:Ndonga_Mianga . ?x prop:name ?uri . }
julipc-p(huggingface)
List the characters of Lysistrata ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lysistrata prop:characters ?uri }
julipc-p(huggingface)
Which TV shows distributor is Broadcast syndication and developed by Brian Graden ?
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 onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri ...
julipc-p(huggingface)
In how many districts is there a borough called tendring?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:borough <http://dbpedia.org/resource/Tendring> . ?x onto:district ?uri . }
julipc-p(huggingface)
What games are played at universities in Lanao Del Sur?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:state <http://dbpedia.org/resource/Lanao_del_Sur> . ?x onto:athletics ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
What is the award won of the scientists known for Cubic Hermite spline?
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:knownFor <http://dbpedia.org/resource/Cubic_Hermite_spline> . ?x onto:award ?uri . ?x rdf:type onto:Scientist}
julipc-p(huggingface)
What is the meaning of Heydar ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Heydar prop:meaning ?uri }
julipc-p(huggingface)
Which composer subsequent work of Moondog Matinee and also composed The TImes They are A changin ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> onto:musicBy ?uri. <http://dbpedia.org/resource/Moondog_Matinee> onto:subsequentWork ?uri}
julipc-p(huggingface)
On how many different grounds were seasons chaired by Ronaldo held?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman <http://dbpedia.org/resource/Ronaldo> . ?x onto:ground ?uri . }
julipc-p(huggingface)
Sentinel High School team is known as ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sentinel_High_School prop:teamName ?uri }
julipc-p(huggingface)
Where does the publisher of Kathimerini live?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kathimerini onto:publisher ?x . ?x prop:residence ?uri . }
julipc-p(huggingface)
Name the basketball team which is coached by Louis Dunbar and has president as Jeff Munn ?
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:coach <http://dbpedia.org/resource/Louis_Dunbar> . ?uri prop:president <http://dbpedia.org/resource/Jeff_Munn> . ?uri rdf:type onto:Bask...
julipc-p(huggingface)
Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?
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:headCoach <http://dbpedia.org/resource/John_Tortorella> . ?uri onto:team ?x . ?uri rdf:type onto:IceHockeyPlayer}
julipc-p(huggingface)
Which draft team of bob Macmillan is also the prospect team of Mikhail Pashnin ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Bob_MacMillan prop:draftTeam ?uri}
julipc-p(huggingface)
How many leagues have used the O.co Coliseum?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/O.co_Coliseum> onto:tenant ?uri . }
julipc-p(huggingface)
What is the common palce of study for jack McGregor and Philip W. Pillsbury ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jack_McGregor onto:education ?uri. res:Philip_W._Pillsbury prop:education ?uri}
julipc-p(huggingface)
What team did the players start their careers with, who right now play for Fleisher Yarn?
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:team <http://dbpedia.org/resource/Fleisher_Yarn> . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}
julipc-p(huggingface)
What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?
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/Association_of_Southeast_Asian_Institutions_of_Higher_Learning> . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}
julipc-p(huggingface)
Where did the people die who were known for Young Life?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:knownFor <http://dbpedia.org/resource/Young_Life> . ?x onto:deathPlace ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Who are the chancellors of universities which is affiliated with Plymouth University?
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/Plymouth_University> . ?x prop:chancellor ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
Which awards did the narrator of Oscar and Lucinda win?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oscar_and_Lucinda_(film)> onto:narrator ?x . ?x prop:awards ?uri . }
julipc-p(huggingface)
What is the musical whose music is by Jose Luis Narom, based upon?
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/José_Luis_Narom> . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}
julipc-p(huggingface)
Which workplace of the Michael M. Sears is also the governing body of the Burro Flats Painted Cave?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Burro_Flats_Painted_Cave onto:governingBody ?uri}
julipc-p(huggingface)
Who are the people which ITV(TV network) has employed?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:employer <http://dbpedia.org/resource/ITV_(TV_network)> . }
julipc-p(huggingface)
What is the broadcast area of WBCQ (SW) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ_(SW)> prop:area ?uri }
julipc-p(huggingface)
What religion did the president follow which was served by Kang Young-hoon?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kang_Young-hoon> prop:president ?x . ?x onto:religion ?uri . }
julipc-p(huggingface)
Which kind of buildings are found in England?
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:locationCountry <http://dbpedia.org/resource/England> . ?x onto:type ?uri . ?x rdf:type onto:Building}
julipc-p(huggingface)
In which state is the team, which has John Roeslein?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Roeslein onto:team ?x . ?x prop:state ?uri . }
julipc-p(huggingface)
Give me the count of all people who ascented a peak in California?
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:locatedInArea <http://dbpedia.org/resource/California> . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
List the total number of regions of the building whose are located in\Grand Forks Air Force Base?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:region <http://dbpedia.org/resource/Grand_Forks_Air_Force_Base> . ?x onto:region ?uri }
julipc-p(huggingface)
Rickenbacker is a musical instrument played by which artists?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:instrument <http://dbpedia.org/resource/Rickenbacker> . ?uri rdf:type onto:MusicalArtist}
julipc-p(huggingface)
List down all the associcated musical artist of the artist of In a Word or 2 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:In_a_Word_or_2 prop:artist ?x . ?x onto:associatedMusicalArtist ?uri . }
julipc-p(huggingface)
List the home town of the people who have Ontario as one of 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 prop:homeTown <http://dbpedia.org/resource/Ontario> . ?x prop:homeTown ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Joe Shuster has created how many comics character ?
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:creators <http://dbpedia.org/resource/Joe_Shuster> . ?uri rdf:type onto:ComicsCharacter}
julipc-p(huggingface)
Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?
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/VDE-Gallo_Records> onto:distributingLabel ?x . ?x prop:currency ?uri . ?x rdf:type onto:Organisation}
julipc-p(huggingface)
Name whose youth club was FC Barcelona ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs res:FC_Barcelona . }
julipc-p(huggingface)
Which awards did the writer of Persona win ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> onto:writer ?x . ?x prop:awards ?uri . }
julipc-p(huggingface)
What is the highschool of the american football player who joined the Robert Morris Colonials program?
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:school <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x prop:highschool ?uri . ?x rdf:type onto:AmericanFootballPlayer...
julipc-p(huggingface)
How many awards have graduates from the University of Queensland earned?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/University_of_Queensland> . ?x prop:awards ?uri . }
julipc-p(huggingface)
Which artist was taught by Jos Ruiz y Blasco?
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/José_Ruiz_y_Blasco> . ?uri rdf:type onto:Artist}
julipc-p(huggingface)
What is the location of Sam Sen Railway Station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sam_Sen_Railway_Station prop:other ?uri }
julipc-p(huggingface)
Which ground of 2016 Fort Lauderdale Strikers season is the palce of birth of Kaitlyn Ashley ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri. res:Kaitlyn_Ashley prop:placeOfBirth ?uri}
julipc-p(huggingface)
Which minister was responsible for Kriminalpolizie?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kriminalpolizei onto:leader ?uri }
julipc-p(huggingface)
Which TV show produced by Paramount Television and is located in Massachusetts ?
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:company <http://dbpedia.org/resource/Paramount_Television> . ?uri onto:location <http://dbpedia.org/resource/Massachusetts> . ?uri rdf:t...
julipc-p(huggingface)
Name the sea located near Europe and has a nearby city as Rostock ?
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 onto:location <http://dbpedia.org/resource/Europe> . ?uri rdf:type onto:Sea}
julipc-p(huggingface)
What ingredients are used in preparing the dish of Ragout fin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ragout_fin onto:ingredient ?uri }
julipc-p(huggingface)