question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
In which city are buildings by Solon Spencer Beman found?
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:architect <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x prop:locationTown ?uri . ?x r...
Orange(huggingface)
Was the 2d Command and Control Squadron barracked in Colorado?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:2d_Command_and_Control_Squadron onto:garrison res:Colorado }
Orange(huggingface)
Which nearest city of Jurgens Site is the death place of Jimmie Heuga?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Jurgens_Site prop:nearestCity ?uri. res:Jimmie_Heuga prop:deathPlace ?uri}
Orange(huggingface)
Name the presenter of Shirley Temple's Storybook?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shirley_Temple's_Storybook> prop:presenter ?uri }
Orange(huggingface)
How many people have been trained in an institute located in California?
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:city <http://dbpedia.org/resource/California> . ?uri prop:training ?x . ?uri rdf:type o...
Orange(huggingface)
Which developer of the Spider-Man: Edge of Time is the successor of PlayStation 2 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spider-Man:_Edge_of_Time> onto:developer ?uri. <http://dbpedia.org/resource/PlayStation_2> onto:successor ?uri}
Orange(huggingface)
What is the mouth mountain of Current River (Missouri)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Current_River_(Missouri)> onto:mouthMountain ?uri }
Orange(huggingface)
Was Francisco Pizarro of the monarch of Charles 5, of the roman empire?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Francisco_Pizarro> onto:monarch <http://dbpedia.org/resource/Charles_V,_Holy_Roman_Emperor> }
Orange(huggingface)
What are the border of High Desert (Oregon)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/High_Desert_(Oregon)> onto:border ?uri }
Orange(huggingface)
Who rented the stadium where the UFC 152 took place?
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/UFC_152> prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}
Orange(huggingface)
Who is the common parent of Gettv and hypnotize mind?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:Hypnotize_Minds prop:parent ?uri}
Orange(huggingface)
Who are the scientists known for the Manhattan Project?
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:knownFor <http://dbpedia.org/resource/Manhattan_Project> . ?uri rdf:type onto:Scientist}
Orange(huggingface)
Who have children named James Roosevelt and Franklin Delano Roosevelt, Jr.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:children <http://dbpedia.org/resource/James_Roosevelt> . ?uri prop:children <http://dbpedia.org/resource/Franklin_Delano_Roosevelt,_Jr.> . }
Orange(huggingface)
What are the movies whose cinematographer is Gregg Toland?
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:cinematography <http://dbpedia.org/resource/Gregg_Toland> . ?uri rdf:type onto:Film}
Orange(huggingface)
What is the nation of the speedway league where Ikaros Smederna played?
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/Ikaros_Smederna> onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SpeedwayLeague}
Orange(huggingface)
Who manages the operator of Norman Park Branch, CTA?
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/Normal_Park_branch_(CTA)> prop:operator ?x . ?x onto:operatedBy ?uri . }
Orange(huggingface)
How many software run on operating system Microsoft Windows?
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:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri rdf:type onto:Software}
Orange(huggingface)
Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull?
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:product <http://dbpedia.org/resource/Pixar_Image_Computer> . ?uri onto:keyPerson <http://dbpedia.org/resource/Edwin_Catmull> . ?uri rdf:t...
Orange(huggingface)
What is the denomination of S. H. Kapadia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:S._H._Kapadia prop:religion ?uri }
Orange(huggingface)
In which cities can i find drinks similar to the IBC root beer?
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:related <http://dbpedia.org/resource/IBC_Root_Beer> . ?x prop:locationCity ?uri . ?x rdf:type ...
Orange(huggingface)
Is the College Sainte Marie in Mauritius?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/College_Sainte-Marie> prop:county <http://dbpedia.org/resource/Mauritius> }
Orange(huggingface)
Where did Paul Jones do his highschool?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Jones_(American_football)> prop:highschool ?uri }
Orange(huggingface)
Where are Solidus and Aureus used?
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:currency <http://dbpedia.org/resource/Aureus> . }
Orange(huggingface)
What are the movies with Daniel Waters as screenwriter?
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:screenplay <http://dbpedia.org/resource/Daniel_Waters_(screenwriter)> . ?uri rdf:type onto:Fi...
Orange(huggingface)
What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce?
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/George_Arceneaux,_Jr.> onto:occupation ?uri. <http://dbpedia.org/resource/Blanche_Bruce> prop:office ?uri}
Orange(huggingface)
Name the route start of Saint Petersburg Moscow Railway ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Saint_Petersburg_–_Moscow_Railway onto:routeStart ?uri }
Orange(huggingface)
What is the award presented by Downtown Athletic Club and Yale Club NYCity?
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 prop:presenter <http:/...
Orange(huggingface)
What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri. res:Charles_A._Boutelle prop:restingplace ?uri}
Orange(huggingface)
Who wrote the mangas produced by Masahike Minami?
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:producer <http://dbpedia.org/resource/Masahiko_Minami> . ?x onto:author ?uri . ?x rdf:type ont...
Orange(huggingface)
Which country's leader is David Johnston?
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:leader <http://dbpedia.org/resource/David_Johnston> . ?uri rdf:type onto:Country}
Orange(huggingface)
Name the sea whose inflow is Kemijoki and outflow is Danish straits?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:inflow <http://dbpedia.org/resource/Kemijoki> . ?uri prop:outflow <http://dbpedia.org/resourc...
Orange(huggingface)
Name the river with source country in Zambia and source region as North-Western Province, Zambia?
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:sourceCountry <http://dbpedia.org/resource/Zambia> . ?uri onto:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> ...
Orange(huggingface)
List the outflows of the lake which has Benu river as one of it?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x prop:outflow ?uri . }
Orange(huggingface)
Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Google_Cloud_Connect onto:computingPlatform ?uri}
Orange(huggingface)
Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:music <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri prop:distributor <http://dbpedia.o...
Orange(huggingface)
Is the Columbia University chaired by William Campbell?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Columbia_University> onto:chairman <http://dbpedia.org/resource/William_Campbell_(business_executive)> }
Orange(huggingface)
List the leaders of all the cities through which the Ganga river flows ?
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/Ganges> prop:city ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:City}
Orange(huggingface)
List all the notable work of the screen writer who produced Frasier ?
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:notableWork <http://dbpedia.org/resource/Frasier> . ?x onto:notableWork ?uri . ?x rdf:type onto:ScreenWriter}
Orange(huggingface)
What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner?
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/The_Trumpet_Kings_Meet_Joe_Turner> prop:producer ?x . ?x onto:associatedB...
Orange(huggingface)
Name the nationalteam of Trn Vit Hng ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Trần_Việt_Hương prop:nationalteam ?uri }
Orange(huggingface)
Which indian party has won the arunachal pradesh elections of 2014, and has been in the 4th legislative assembly?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arunachal_Pradesh_Legislative_Assembly_election,_2014> prop:party ?uri. <http://dbpedia.org/resource/Fourth_Legislative_Assembly_of_Delhi> prop:party ?uri . }
Orange(huggingface)
What is the largest city of the country which hosted the 1951 Asian 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 { <http://dbpedia.org/resource/1951_Asian_Games> prop:hostCity ?x . ?x onto:largestCity ?uri . ?x rdf:ty...
Orange(huggingface)
In how many territories were the wars fought where Fusil Gras Mile 1874 were used?
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 { <http://dbpedia.org/resource/Fusil_Gras_mle_1874> onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}
Orange(huggingface)
Who created the stadiums who have been rented by the Boston Red Sox?
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:tenant <http://dbpedia.org/resource/Boston_Red_Sox> . ?x prop:architect ?uri . ?x rdf:type ont...
Orange(huggingface)
List the leaders of the government agencies whose jurisdiction was German-occupied Europe.
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:jurisdiction <http://dbpedia.org/resource/German-occupied_Europe> . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}
Orange(huggingface)
What is the deathplace of people who have worked in Ethics?
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:mainInterests <http://dbpedia.org/resource/Ethics> . ?x prop:placeOfDeath ?uri . ?x rdf:type o...
Orange(huggingface)
Cable stayed bridges have been used to cross over how many things?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design <http://dbpedia.org/resource/Cable-stayed_bridge> . ?x prop:crosses ?uri . }
Orange(huggingface)
what has been developed by John Fanning?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:developer <http://dbpedia.org/resource/John_Fanning_(businessman)> }
Orange(huggingface)
Who is a successor of Kingship whose parent was Julius Caesar?
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}
Orange(huggingface)
What is the place of birth of the Kira Plastinina and Sergey Ryazansky?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Kira_Plastinina prop:placeOfBirth ?uri. res:Sergey_Ryazansky prop:placeOfBirth ?uri . }
Orange(huggingface)
Which fictional character's relative is Clan McDuck and belongs to American Pekin duck?
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:relatives <http://dbpedia.org/resource/Clan_McDuck> . ?uri onto:species <http://dbpedia.org/r...
Orange(huggingface)
From how many different places have people gone to the Harward Medical School?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:institution <http://dbpedia.org/resource/Harvard_Medical_School> . ?x onto:birthPlace ?uri . }
Orange(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 }
Orange(huggingface)
List the parts of the settlements which has a part named Seguin, Texas.
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:part <http://dbpedia.org/resource/Seguin,_Texas> . ?x onto:part ?uri . ?x rdf:type onto:Settlement}
Orange(huggingface)
List the software which runs on Microsoft Windows and has license as Software as a service?
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:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri onto:license <http://dbpedia.org/resource/Software_as_a_service> ....
Orange(huggingface)
What is the name of the information appliance by sony whose predecessor is PlayStation 2?
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:manufacturer <http://dbpedia.org/resource/Sony> . ?uri prop:predecessor <http://dbpedia.org/r...
Orange(huggingface)
Name the company which produces both Boeing F/A-18 E/F Hornet and CH-46 Chinook ?
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:product <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . ?uri prop:products <htt...
Orange(huggingface)
List the sports associated with Mariveles, Bataan?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:city <http://dbpedia.org/resource/Mariveles,_Bataan> . ?x onto:sport ?uri . }
Orange(huggingface)
Which license provider of MSX basic is also the designer of Language Integrated Query?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri. res:MSX_BASIC prop:license ?uri}
Orange(huggingface)
list some companies founded by Jim Harris.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> }
Orange(huggingface)
Was Lionel Messi a member of the 2009 FIFA World Cup squads?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:2009_FIFA_Club_World_Cup_squads onto:currentMember res:Lionel_Messi }
Orange(huggingface)
Where does the river end which starts in Mazabuka?
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:city <http://dbpedia.org/resource/Mazabuka> . ?x onto:riverMouth ?uri . ?x rdf:type onto:River...
Orange(huggingface)
Where is the headquarters of the public transit system which operates Go-To card?
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/Go-To_card> prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type on...
Orange(huggingface)
What is the constituency of the people who died in Lampedusa?
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:deathPlace <http://dbpedia.org/resource/Lampedusa> . ?x prop:constituency ?uri . ?x rdf:type o...
Orange(huggingface)
Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location <http://dbpedia.org/resource/Watkins_Glen,_New_York> . ?x prop:firstTeam ?uri . }
Orange(huggingface)
Carl Sagan has penned books on how many matters?
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:author <http://dbpedia.org/resource/Carl_Sagan> . ?x prop:subject ?uri . }
Orange(huggingface)
Which players participate in the football seasons headed 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 ?uri WHERE { ?x onto:chairman <http://dbpedia.org/resource/Patrícia_Amorim> . ?x prop:name ?uri . ?x rdf:type onto...
Orange(huggingface)
Count the total number of battles fought by the military people which fought in Levant?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/Levant> . ?x prop:battles ?uri }
Orange(huggingface)
List all areas served by the radio station serving South carolina ?
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:area <http://dbpedia.org/resource/South_Carolina> . ?x prop:area ?uri . ?x rdf:type onto:Radio...
Orange(huggingface)
Which wine region of Bogdanua is the Croatian Inline hockey team part of?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Croatian_Inline_Hockey_League onto:country ?uri}
Orange(huggingface)
Who composed the episode after which came Butter's Very own Episode?
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:subsequentWork <http://dbpedia.org/resource/Butters'_Very_Own_Episode> . ?x onto:musicComposer ?uri . ?x rdf:type onto:TelevisionEpisode}
Orange(huggingface)
Which wars were fought when the commanders involved served under PM Choi Tu Son?
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:primeminister <http://dbpedia.org/resource/Choi_Tu-son> . ?uri onto:commander ?x . ?uri rdf:ty...
Orange(huggingface)
Is my truly truly fair from the band of mitch miller?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/My_Truly,_Truly_Fair> onto:musicalBand <http://dbpedia.org/resource/Mitch_Miller> }
Orange(huggingface)
The president who was in office when Lee Hyun Jae was the PM followed which religion?
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:primeminister <http://dbpedia.org/resource/Lee_Hyun-jae> . ?x onto:religion ?uri . ?x rdf:type...
Orange(huggingface)
List the destinations of the airlines which also serves Mediterranean Sea?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:destinations <http://dbpedia.org/resource/Mediterranean_Sea> . ?x prop:destinations ?uri . ?x ...
Orange(huggingface)
What state has a Brideun School for Exception Children and is the birthplace of B J Crombeen?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Brideun_School_for_Exceptional_Children prop:state ?uri. res:B._J._Crombeen onto:birthPlace ?uri . }
Orange(huggingface)
What is the university attended by the baseball player who's known for Olin Corporation?
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/Olin_Corporation> . ?x prop:education ?uri . ?x rdf:type...
Orange(huggingface)
What are the movies whose cast members are signed up with Point Blank 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 { ?x prop:label <http://dbpedia.org/resource/Point_Blank_Records> . ?uri prop:starring ?x . ?uri rdf:typ...
Orange(huggingface)
Which border country of the Korean Peninsula is also the country of Krusty, a musical group ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Korean_Peninsula> onto:border ?uri. <http://dbpedia.org/resource/Krusty_(music_group)> onto:country ?uri}
Orange(huggingface)
What is the company of Ford Theatre?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ford_Theatre prop:company ?uri }
Orange(huggingface)
Who are the people which were the influencer of the person, who influenced Costanzo Preve ?
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/Costanzo_Preve> onto:influencedBy ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Person}
Orange(huggingface)
Bud Adams owns which american football team?
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:owner <http://dbpedia.org/resource/Bud_Adams> . ?uri rdf:type onto:AmericanFootballTeam}
Orange(huggingface)
In how many regions is English American spoken?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/English_Americans> prop:region ?uri . }
Orange(huggingface)
What is the birthplace of Adugna Deyas and the place where Fiq is located?
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/Fiq,_Ethiopia> onto:country ?uri. <http://dbpedia.org/resource/Adugna_Deyas> prop:birthPlace ?uri . }
Orange(huggingface)
List all the faiths that British Columbian politicians follow?
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:residence <http://dbpedia.org/resource/British_Columbia> . ?x prop:religion ?uri . ?x rdf:type...
Orange(huggingface)
Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?
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:predecessor <http://dbpedia.org/resource/Boeing_Vertol_CH-46_Sea_Knight> . ?uri prop:products ...
Orange(huggingface)
Who is the animator of Tommy Tucker's Tooth ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri }
Orange(huggingface)
From how many countries have people participated in the Excelsior Stakes?
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:race <http://dbpedia.org/resource/Excelsior_Stakes> . ?x onto:birthPlace ?uri . }
Orange(huggingface)
Is Lloyd Nosler the editor of The Temptress?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:The_Temptress onto:editing res:Lloyd_Nosler }
Orange(huggingface)
How many developers make software for Unix like operating systems?
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:operatingSystem <http://dbpedia.org/resource/Unix-like> . ?x onto:developer ?uri . }
Orange(huggingface)
How many universities are there whose country's capital is Oslo?
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:capital <http://dbpedia.org/resource/Oslo> . ?uri onto:country ?x . ?uri rdf:type onto:...
Orange(huggingface)
Brian Dunkleman is the presenter of what TV show?
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 rdf:type onto:TelevisionShow}
Orange(huggingface)
Who operates the railway line which begins in Minneapolis?
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:routeStart <http://dbpedia.org/resource/Minneapolis> . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}
Orange(huggingface)
List the relegion of Otani University which is also the life stance of udit Raj ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:ÅŒtani_University prop:affiliation ?uri. res:Udit_Raj onto:religion ?uri}
Orange(huggingface)
Which shows are similar to the ones produced by Phil Collinson?
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:executiveProducer <http://dbpedia.org/resource/Phil_Collinson> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
England is the origin of how many things?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin <http://dbpedia.org/resource/England> . }
Orange(huggingface)
What river originates in Kingston Ontario?
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:sourceLocation <http://dbpedia.org/resource/Kingston,_Ontario> . ?uri rdf:type onto:River}
Orange(huggingface)
Which field's journals are edited by Paul Morphy?
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:editor <http://dbpedia.org/resource/Paul_Morphy> . ?x prop:discipline ?uri . ?x rdf:type onto:...
Orange(huggingface)
Where are the shrines of the saints who were beatified by Pope Pius XI?
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:beatifiedBy <http://dbpedia.org/resource/Pope_Pius_XI> . ?x onto:majorShrine ?uri . ?x rdf:typ...
Orange(huggingface)
Which television show's company is Paramount Television and is located 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 {?uri prop:company <http://dbpedia.org/resource/Paramount_Television> . ?uri onto:location <http://dbped...
Orange(huggingface)