question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which college of the Luke List (golfer) is the alma mater of the Park Trammell ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> prop:college ?uri. <http://dbpedia.org/resource/Park_Trammell> onto:almaMater ?uri}
Orange(huggingface)
In which mountain Inyo National Forest and California are located?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:locatedInArea <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri onto:locatedInArea <http://dbpedia.org/resource/California> . ?u...
Orange(huggingface)
Is greasy pop records distributed by festival records?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Greasy_Pop_Records onto:distributingLabel res:Festival_Records }
Orange(huggingface)
Who wrote the album coming right before Dead Man's Chest's OST?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:nextAlbum <http://dbpedia.org/resource/Pirates_of_the_Caribbean:_Dead_Man's_Chest_(soundtrack)...
Orange(huggingface)
What are some scientists who have stateless citizenship?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:citizenship <http://dbpedia.org/resource/Statelessness> . ?uri rdf:type onto:Scientist}
Orange(huggingface)
What is the military branch of John Tower?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Tower onto:militaryBranch ?uri }
Orange(huggingface)
Give me a count of everything under the archipelago, where Papeete is the biggest town.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:largestCity <http://dbpedia.org/resource/Papeete> . ?uri prop:archipelago ?x . }
Orange(huggingface)
Give me the count of all the names of characters created by Frank Miller
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creators <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?x prop:characterName ?uri . }
Orange(huggingface)
Players from how many teams have participated in the National Hockey League?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league <http://dbpedia.org/resource/National_Hockey_League> . ?x onto:team ?uri . ?uri ...
Orange(huggingface)
Was Zachary taylor a major general?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Zachary_Taylor> prop:rank <http://dbpedia.org/resource/Major_general_(United_States)> }
Orange(huggingface)
Who is the co-founder of the city where Owen Dougherty died?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Owen_Dougherty> prop:placeOfDeath ?x . ?x onto:founder ?uri . ?x rdf:type...
Orange(huggingface)
Was andy worhol the director of the san diego surf?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/San_Diego_Surf_(film)> onto:cinematography <http://dbpedia.org/resource/Andy_Warhol> }
Orange(huggingface)
Who were the opponents of the people buried in the tower of London?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace <http://dbpedia.org/resource/Tower_of_London> . ?x onto:opponent ?uri . ?x rdf:ty...
Orange(huggingface)
What is the parent company of company which owns Sony Bank?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Bank> prop:parent ?x . ?x onto:parentCompany ?uri . ?x rdf:type onto...
Orange(huggingface)
What is the base currency of Benelux?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri }
Orange(huggingface)
Who owns a bridge in Boston?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea <http://dbpedia.org/resource/Boston> . ?x prop:owner ?uri . ?x rdf:type onto:Bri...
Orange(huggingface)
Give me the list of people who scaled mountains in Sierra Nevada?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?x onto:firstAscentPerson ?uri . }
Orange(huggingface)
Which educational institution has Kaplan, Inc as it's affiliation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:affiliations <http://dbpedia.org/resource/Kaplan,_Inc.> . ?uri rdf:type onto:EducationalInsti...
Orange(huggingface)
How many bacterias are there whose division is Firmicutes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:division <http://dbpedia.org/resource/Firmicutes> . ?uri rdf:type onto:Bacteria}
Orange(huggingface)
Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Laughs,_a_Vale_of_Tears> onto:author ?x . ?x onto:award ?uri . ?x rdf:type onto:ComicsCreator}
Orange(huggingface)
List the settlements area whose province is Metropolitan City of Venice?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:province <http://dbpedia.org/resource/Metropolitan_City_of_Venice> . ?uri rdf:type onto:Settl...
Orange(huggingface)
Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground <http://dbpedia.org/resource/Rosario,_Santa_Fe> . ?uri prop:youthclubs ?x . }
Orange(huggingface)
What is the mountain whose parent mountain peak is Nevado de Toluca?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:parentMountainPeak <http://dbpedia.org/resource/Nevado_de_Toluca> . ?uri rdf:type onto:Mountain}
Orange(huggingface)
Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:currency <http://dbpedia.org/resource/Solidus_(coin)> . ?uri onto:capital <http://dbpedia.org/resource/Nicomedia> . }
Orange(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 }
Orange(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 res: <http://dbpedia.org/resource/> 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 ...
Orange(huggingface)
Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> onto:ceremonialCounty ?uri. <http://dbpedia.org/resource/Trinity_School,_Brentwood> onto:localAuthority ?uri}
Orange(huggingface)
Which mountain range is the one with Ponte d'Aveneyre and Le Gibloux?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> onto:mountainRange ?uri. <http://dbpedia.org/resource/Le_Gibloux> onto:mountainRange ?uri . }
Orange(huggingface)
What sports are played by school which owns Fr. Agnel Stadium?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> prop:owner ?x . ?x onto:sport ?uri . ?x rdf:type onto:...
Orange(huggingface)
Which office holder's resting place is William Henry Harrison Tomb State Memorial and has governor named Charles Willing Byrd?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:restingplace <http://dbpedia.org/resource/William_Henry_Harrison_Tomb_State_Memorial> . ?uri ...
Orange(huggingface)
How many developers have games where I can hear Lightning McQueen?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lightning_McQueen> onto:voice ?x . ?x onto:developer ?uri . }
Orange(huggingface)
Give me some organizations working for Environmentalism?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:purpose <http://dbpedia.org/resource/Environmentalism> . ?uri rdf:type onto:Organisation}
Orange(huggingface)
How many factions were involved in the battles fought by Arthur St. Clair?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Arthur_St._Clair> prop:battles ?x . ?x prop:combatant ?uri . }
Orange(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 }
Orange(huggingface)
In which races did the horses of Mon Capitaine take part?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:sire <http://dbpedia.org/resource/Mon_Capitaine> . ?x prop:race ?uri . ?x rdf:type onto:Horse}
Orange(huggingface)
What band has Joe Hahn and Chester Bennington?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:currentMembers <http://dbpedia.org/resource/Joe_Hahn> . ?uri prop:currentMembers <http://dbp...
Orange(huggingface)
How many tenants are there in the Mercedes Benz Superdome?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> onto:tenant ?uri . }
Orange(huggingface)
Which office holder's governor is Charles Willing Byrd and has final resting place in North Bend, Ohio?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:governor <http://dbpedia.org/resource/Charles_Willing_Byrd> . ?uri prop:restingplace <http://...
Orange(huggingface)
What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity <http://dbpedia.org/resource/Uganda> . ?x onto:nearestCity ?uri }
Orange(huggingface)
Who are the people whose phD advisor was Harry Harlow?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor <http://dbpedia.org/resource/Harry_Harlow> . ?uri rdf:type onto:Person}
Orange(huggingface)
Name the river with mouth place Essex and source place as Gloucestershire ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace <http://dbpedia.org/resource/Essex> . ?uri onto:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri rdf:type onto...
Orange(huggingface)
List the people with final resting place as Plymouth, Vermont and has Samuel W. McCall as predecessor?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace <http://dbpedia.org/resource/Plymouth,_Vermont> . ?uri prop:predecessor <http://...
Orange(huggingface)
Name a river with source country as Zambia and source location as Ikelenge District?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry <http://dbpedia.org/resource/Zambia> . ?uri prop:sourceLocation <http://dbpedia...
Orange(huggingface)
Which rivers have source origins asnorth western, Zambia ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> . ?uri rdf:type ont...
Orange(huggingface)
Name the team which is the owner of Dafenham wind turbines and stood first in 1967 mexican Grand Prix?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri. res:Dagenham_wind_turbines prop:owner ?uri}
Orange(huggingface)
Under which scientist did doctoral students erban ieica and Erich Bagge study?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:doctoralStudents <http://dbpedia.org/resource/Șerban_Țițeica> . ?uri prop:doctoralStudent...
Orange(huggingface)
Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:presenter <http://dbpedia.org/resource/Brian_Dunkleman> . ?uri prop:judges <http://dbpedia.or...
Orange(huggingface)
Which river starts from the county seat of Heathsville, Virginia?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:countySeat <http://dbpedia.org/resource/Heathsville,_Virginia> . ?uri prop:mouthLocation ?x . ...
Orange(huggingface)
Which distributer of Glover is also the stockholder of Seattle Mariners ?
PREFIX res: <http://dbpedia.org/resource/> 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}
Orange(huggingface)
For which country did Alexander Lippisch design airplanes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:designer <http://dbpedia.org/resource/Alexander_Lippisch> . ?x prop:nationalOrigin ?uri . ?x r...
Orange(huggingface)
Who directed The Haunted House ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> onto:director ?uri }
Orange(huggingface)
Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri. <http://dbpedia.org/resource/PATTS_College_of_Aeronautics> prop:athletics ?uri}
Orange(huggingface)
Name the show formed by J. Michael Stroczynski and had network as TNT ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:developer <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri prop:network <http://db...
Orange(huggingface)
Name the tv series produced by Stephen Ambrose and Erik Bork?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri onto:producer <http://dbpedia.org/resource/Erik_Bork> . ?uri rdf:type o...
Orange(huggingface)
In how many places are the tombs of people who died in Connecticut Colony?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath <http://dbpedia.org/resource/Connecticut_Colony> . ?x onto:restingPlace ?u...
Orange(huggingface)
What are the relatives of the parliament member whose successor is Peter Thorneycroft?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:successor <http://dbpedia.org/resource/Peter_Thorneycroft> . ?x onto:relation ?uri . ?x rdf:ty...
Orange(huggingface)
Name the partners of the models whose one of the partner is Thom Evans ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:partner <http://dbpedia.org/resource/Thom_Evans> . ?x onto:partner ?uri . ?x rdf:type onto:Model}
Orange(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 res: <http://dbpedia.org/resource/> 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}
Orange(huggingface)
How many companies were started in the states?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:Company}
Orange(huggingface)
What are some movies whose score is composed by relatives of Bodhi Elfman?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:relatives <http://dbpedia.org/resource/Bodhi_Elfman> . ?uri prop:music ?x . ?uri rdf:type onto...
Orange(huggingface)
Titus software publishes which genre of games?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:publisher <http://dbpedia.org/resource/Titus_Software> . ?x onto:genre ?uri . ?x rdf:type onto...
Orange(huggingface)
how many companies are located in a spanish speaking region?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:language <http://dbpedia.org/resource/Spanish_language> . ?uri onto:location ?x . ?uri rdf:type onto:Organisation}
Orange(huggingface)
What awards have the alumni of Academy of Fine Arts in Lodz achieved?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:training res:Academy_of_Fine_Arts_In_Łódź . ?x onto:award ?uri . }
Orange(huggingface)
What is the common award won by geoffrey Rush and Laemmle Theatres?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Geoffrey_Rush prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri}
Orange(huggingface)
Which state's largest city is Omaha?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:largestCity <http://dbpedia.org/resource/Omaha,_Nebraska> . ?uri rdf:type onto:AdministrativeRegion}
Orange(huggingface)
What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Kansas_City_Assembly_Plant> onto:owningOrganisation ?uri. <http://dbpedia.org/resource/Ford_Y-block_engine> onto:manufacturer ?uri}
Orange(huggingface)
Which party has come in power in Mumbai North?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:constituency <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?x onto:party ?uri . }
Orange(huggingface)
Name some politicians buried in a place near Orange Virginia?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity <http://dbpedia.org/resource/Orange,_Virginia> . ?uri prop:restingplace ?x . ?uri ...
Orange(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 res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sleepy-Time_Squirrel> prop:director ?x . ?x onto:knownFor ?uri . ?x rdf:t...
Orange(huggingface)
Which rivers start at the Brower's Spring?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain <http://dbpedia.org/resource/Brower's_Spring> }
Orange(huggingface)
Which sects people are part of local political parties which fall under the International Muslim Brotherhood?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:international <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x onto:religion ?uri . ?x rd...
Orange(huggingface)
List the outflow of Lake Uniamsi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési onto:outflow ?uri }
Orange(huggingface)
Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:spouse <http://dbpedia.org/resource/Jill_Krementz> . ?uri onto:child <http://dbpedia.org/resource/Edith_Vonnegut> . ?uri rdf:type onto:Wr...
Orange(huggingface)
How many people have worked for teams chaired by Patricia Amorim?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman <http://dbpedia.org/resource/Patrícia_Amorim> . ?x prop:name ?uri . ?uri rdf:...
Orange(huggingface)
Which city which owns Boundary Dam and was the place for Soccer Bowl '76?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Soccer_Bowl_'76> onto:city ?uri. <http://dbpedia.org/resource/Boundary_Dam> prop:owner ?uri}
Orange(huggingface)
Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri prop:...
Orange(huggingface)
Where do the rivers starting from Zambia end?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:sourceCountry <http://dbpedia.org/resource/Zambia> . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}
Orange(huggingface)
Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Parker_(baseball)> onto:formerTeam ?uri. <http://dbpedia.org/resource/Carl_Sitton> prop:debutteam ?uri}
Orange(huggingface)
Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit <http://dbpedia.org/resource/USS_Kittiwake_(ASR-13)> . ?uri prop:constituency <h...
Orange(huggingface)
Count the tenants of the stadiums owned by toronto.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:owner <http://dbpedia.org/resource/Toronto> . ?x prop:tenants ?uri . }
Orange(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 res: <http://dbpedia.org/resource/> 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...
Orange(huggingface)
People born in Saint-Amand-en-Puisaye are famous for what things ?
PREFIX res: <http://dbpedia.org/resource/> 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 . }
Orange(huggingface)
Who is related to Kelly Osbourne & Ozzy Osbourne?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:relatives res:Kelly_Osbourne . ?uri prop:relatives res:Ozzy_Osbourne . }
Orange(huggingface)
What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/65th_(2nd_Yorkshire,_North_Riding)_Regiment_of_Foot> prop:battleHonours ?x . ?x onto:largestCity ?uri . }
Orange(huggingface)
What are the movies whose director is Orson Welles?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:director <http://dbpedia.org/resource/Orson_Welles> . ?uri rdf:type onto:Film}
Orange(huggingface)
Name some ww1 veterans?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:battles res:World_War_I . }
Orange(huggingface)
Which award is presented by Downtown Athletic Club?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:presenter <http://dbpedia.org/resource/Downtown_Athletic_Club> . ?uri rdf:type onto:Award}
Orange(huggingface)
Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:discoverer <http://dbpedia.org/resource/Johann_Gottfried_Galle> . ?uri onto:discoverer <http:...
Orange(huggingface)
What is the predecessor of BMW M40?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:BMW_M40 prop:predecessor ?uri }
Orange(huggingface)
How many people currently play for Stoke City F.C.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub <http://dbpedia.org/resource/Stoke_City_F.C.> . }
Orange(huggingface)
Who worked at A Goon's Deed in a Weary World and CBS?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:occupation <http://dbpedia.org/resource/A_Goon's_Deed_in_a_Weary_World> . ?uri onto:occupation <http://dbpedia.org/resource/CBS> . }
Orange(huggingface)
What is the alma mater of the scientists known for String theory?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:knownFor <http://dbpedia.org/resource/String_theory> . ?x prop:almaMater ?uri . ?x rdf:type on...
Orange(huggingface)
CN Atletic-Barceloneta has a stadium in Barcelona?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/CN_Atlètic-Barceloneta> onto:stadium <http://dbpedia.org/resource/Barcelona> }
Orange(huggingface)
List all crafts of the people whose one of the profession is Kingdom of Naples ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:occupation <http://dbpedia.org/resource/Kingdom_of_Naples> . ?x onto:occupation ?uri . ?x rdf:type onto:Person}
Orange(huggingface)
List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:homeStadium <http://dbpedia.org/resource/Nairobi> . ?x prop:homeStadium ?uri . ?x rdf:type ont...
Orange(huggingface)
To what companies is Dennis Muilenburg important?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri rdf:type onto:Company}
Orange(huggingface)
What are some software which are written in languages that are run on Unix like OS?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem <http://dbpedia.org/resource/Unix-like> . ?uri prop:programmingLanguage ?x . ?...
Orange(huggingface)
List out the people who are related to the relatives of Jared Kushner?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jared_Kushner onto:relation ?x . ?x onto:relation ?uri . }
Orange(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 res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/VDE-Gallo_Records> onto:distributingLabel ?x . ?x prop:currency ?uri . ?x...
Orange(huggingface)
What are the movies whose music composer is Akira Ifukube?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer <http://dbpedia.org/resource/Akira_Ifukube> . ?uri rdf:type onto:Film}
Orange(huggingface)