question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which TV show's theme was composed by a band in which Todd Huth used to perform?
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:formerBandMember <http://dbpedia.org/resource/Todd_Huth> . ?uri prop:themeMusicComposer ?x . ?...
Orange(huggingface)
From which countries are the people from who are an academic authority of the Western pygmy blue species?
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/Western_pygmy_blue> onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Person}
Orange(huggingface)
Which builder has made concrete bridges?
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:material <http://dbpedia.org/resource/Concrete> . ?x onto:builder ?uri . ?x rdf:type onto:Brid...
Orange(huggingface)
List the affiliation of Indian general election, 2004 (Andhra Pradesh) ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Indian_general_election,_2004_(Andhra_Pradesh)> onto:affiliation ?uri }
Orange(huggingface)
Who designed the bridge in Oddamavadi?
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/Oddamavadi> . ?x prop:designer ?uri . ?x rdf:type o...
Orange(huggingface)
Which countries led by Elizabeth II?
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:leaderName <http://dbpedia.org/resource/Elizabeth_II> . ?uri rdf:type onto:Country}
Orange(huggingface)
How many things are made by companies who produce mass media articles?
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:products <http://dbpedia.org/resource/Mass_media> . ?uri onto:manufacturer ?x . }
Orange(huggingface)
Who all have been a manager of England under-21 football team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs <http://dbpedia.org/resource/England_national_under-21_football_team> }
Orange(huggingface)
Which founder of sea Gayle Music is also the judge of Rising Star ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sea_Gayle_Music> prop:founder ?uri. <http://dbpedia.org/resource/Rising_Star_(U.S._TV_series)> prop:judges ?uri}
Orange(huggingface)
Which founder of European School, Karlsruhe is also the jurisdiction of the European Border of Coast guard?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Border_and_Coast_Guard> prop:jurisdiction ?uri. <http://dbpedia.org/resource/European_School,_Karlsruhe> prop:founder ?uri}
Orange(huggingface)
List the primary subjects of A Christian Turn'd Turk?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Christian_Turn'd_Turk> prop:subject ?uri }
Orange(huggingface)
Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> prop:nationalOrigin ?uri. <http://dbpedia.org/resource/Start_+_Flug_H-101> prop:nationalOrigin ?uri . }
Orange(huggingface)
Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?
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:related <http://dbpedia.org/resource/Babylon_5:_The_Lost_Tales> . ?uri onto:network <http://dbpedia.org/resource/Prime_Time_Entertainment...
Orange(huggingface)
What is the parent company of the airline whose hub is in Detroit?
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:hubs <http://dbpedia.org/resource/Detroit> . ?x onto:parentCompany ?uri . ?x rdf:type onto:Air...
Orange(huggingface)
How many religions are followed by organizations which are internationally known as the muslim brotherhood?
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:international <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x onto:religion ?uri . }
Orange(huggingface)
What all are in the states whose anthem is Ja, vi esker dette landet?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:anthem <http://dbpedia.org/resource/Ja,_vi_elsker_dette_landet> . ?uri onto:country ?x . }
Orange(huggingface)
Name the Pole driver of 1994 Spanish Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix prop:poleDriver ?uri }
Orange(huggingface)
Who are the managers of clubs participating in the 2014-2015 Football League Championship?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:season res:2014–15_Football_League_Championship . ?uri onto:managerClub ?x . }
Orange(huggingface)
Where is the king buried whose predecessor was Iyasu II?
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:predecessor <http://dbpedia.org/resource/Iyasu_II> . ?x prop:placeOfBurial ?uri . ?x rdf:type ...
Orange(huggingface)
Name the military unit whose garrison is Arlington County, Virginia and command structure is United States Department of Defense?
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:garrison <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri onto:commandStructure <http://dbpedia.org/resource/United_States...
Orange(huggingface)
Name some shows similar to the one whose theme song is made by Murray Gold.
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:themeMusicComposer <http://dbpedia.org/resource/Murray_Gold> . ?uri onto:related ?x . ?uri rdf...
Orange(huggingface)
Name the TV show whose opening theme is Gary Portnoy and the subsequent work is 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 {?uri onto:openingTheme <http://dbpedia.org/resource/Gary_Portnoy> . ?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rdf:type ...
Orange(huggingface)
Which awards have been given to the horse who sired Triplicate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Triplicate prop:sire ?x . ?x onto:honours ?uri . }
Orange(huggingface)
What city was recorded in Live in detroit which is also the official residence of ken Holland ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_in_Detroit,_MI> onto:recordedIn ?uri. <http://dbpedia.org/resource/Ken_Holland> onto:residence ?uri}
Orange(huggingface)
List the Stanley Kubrick's movies which has music by Laurie Johnson ?
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:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri prop:music <http://dbpedia.org/...
Orange(huggingface)
Who is the builder of Estadio Nacional de Costa Rica (2011) ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Estadio_Nacional_de_Costa_Rica_(2011)> onto:builder ?uri }
Orange(huggingface)
Name a fictional character whose relative is Uncle Henry and species is Human?
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:relative <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri onto:species <http://dbpedia.org/resource/Human> . ?uri rdf:type onto:Fict...
Orange(huggingface)
Give me all magazines whose editors live in Chicago?
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:hometown <http://dbpedia.org/resource/Chicago> . ?uri prop:editor ?x . ?uri rdf:type onto:Maga...
Orange(huggingface)
what are some neighboring cities of Pregny Chambsy?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:neighboringMunicipality <http://dbpedia.org/resource/Pregny-Chambésy> }
Orange(huggingface)
Kendall Jenner has how many relatives?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Kendall_Jenner> prop:relatives ?uri . }
Orange(huggingface)
The Other Side has hosted how many guests?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> prop:guests ?uri . }
Orange(huggingface)
Where is the fictional character from, whose last appearance was in the Avengers, 1998?
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:last <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?x prop:nationality ?uri . ?x rd...
Orange(huggingface)
Was Zachary Taylor a commander of the sixth infantry regiment of US?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/6th_Infantry_Regiment_(United_States)> onto:notableCommander <http://dbpedia.org/resource/Zachary_Taylor> }
Orange(huggingface)
What are some products manufactured by Sony?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer res:Sony . }
Orange(huggingface)
What is the total number of regions served by the companies which also serve Australia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed <http://dbpedia.org/resource/Australia> . ?x onto:regionServed ?uri }
Orange(huggingface)
Mouse Morris' horses have raced in which races?
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:trainer <http://dbpedia.org/resource/Mouse_Morris> . ?x prop:race ?uri . ?x rdf:type onto:Hors...
Orange(huggingface)
The president served by Haqqi al-Azm died where?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Haqqi_al-Azm> prop:president ?x . ?x prop:placeOfDeath ?uri . }
Orange(huggingface)
Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?
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:developer <http://dbpedia.org/resource/Brian_Graden> . ?uri prop:voices <http://dbpedia.org/r...
Orange(huggingface)
Does Jean Louis Arcand work for Geneva?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Jean-Louis_Arcand> prop:institution <http://dbpedia.org/resource/Geneva> }
Orange(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 res: <http://dbpedia.org/resource/> 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:Televisio...
Orange(huggingface)
Name a TV show judged by Jennifier Lopez and presented by Brian Dunkleman ?
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:judges <http://dbpedia.org/resource/Jennifer_Lopez> . ?uri prop:presenter <http://dbpedia.org...
Orange(huggingface)
How many other wine region are there of the grapes whose one of the wine region is Michigan ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:wineRegion <http://dbpedia.org/resource/Michigan> . ?x onto:wineRegion ?uri }
Orange(huggingface)
Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus?
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:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri prop:themeMusicCompose...
Orange(huggingface)
Who owns the schools which have a penguin as its mascot?
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:mascot <http://dbpedia.org/resource/Penguin> . ?x onto:authority ?uri . ?x rdf:type onto:Schoo...
Orange(huggingface)
Give me a count of everything owned by the network whose sister name is The CW?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames <http://dbpedia.org/resource/The_CW> . ?uri prop:network ?x . }
Orange(huggingface)
What are the county seats of the region which operates the Boeing Field?
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/Boeing_Field> onto:operator ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}
Orange(huggingface)
Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary res:Bjelimićka_Rijeka . ?x onto:mouthCountry ?uri . }
Orange(huggingface)
Is George Lucas the cinematographer of 6-18-67?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/6-18-67> prop:cinematography <http://dbpedia.org/resource/George_Lucas> }
Orange(huggingface)
List the debut team of the baseball player who born in Houston.
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:birthPlace <http://dbpedia.org/resource/Houston> . ?x onto:debutTeam ?uri . ?x rdf:type onto:B...
Orange(huggingface)
Count the different types of Flatbread ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:type <http://dbpedia.org/resource/Flatbread> . }
Orange(huggingface)
ITV employes how many people?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:employer <http://dbpedia.org/resource/ITV_(TV_network)> . }
Orange(huggingface)
where did Boga originate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boga_(soft_drink)> prop:origin ?uri }
Orange(huggingface)
Who wrote the play in which Blanche DuBois is a character?
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:characters <http://dbpedia.org/resource/Blanche_DuBois> . ?x prop:writer ?uri . ?x rdf:type on...
Orange(huggingface)
How many people won the Gold Medal of the Royal Astronomical Society?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:prizes <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }
Orange(huggingface)
What are the death place of the models whose hair color was Red?
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:hairColor <http://dbpedia.org/resource/Red_hair> . ?x prop:deathPlace ?uri . ?x rdf:type onto:...
Orange(huggingface)
Under which president did some politicians live in Kensington?
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:residence <http://dbpedia.org/resource/Kensington,_Maryland> . ?x onto:president ?uri . ?x rdf:type onto:OfficeHolder}
Orange(huggingface)
What are some movies written by British writers?
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:nationality <http://dbpedia.org/resource/British_people> . ?uri onto:writer ?x . ?uri rdf:type onto:Film}
Orange(huggingface)
Whose doctoral student is Etienne Bieler?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent res:Étienne_Biéler }
Orange(huggingface)
Who is the governor of Carl McCall?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Carl_McCall onto:governor ?uri }
Orange(huggingface)
Name the veneration of the monarch who is the predecessor of Solomon?
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/Solomon> prop:predecessor ?x . ?x prop:veneratedIn ?uri . ?x rdf:type ont...
Orange(huggingface)
What is the city whose mayor is Anne Hidalgo?
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:mayor <http://dbpedia.org/resource/Anne_Hidalgo> . ?uri rdf:type onto:Settlement}
Orange(huggingface)
Jeff Munn is the president of which basketball team?
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:president <http://dbpedia.org/resource/Jeff_Munn> . ?uri rdf:type onto:BasketballTeam}
Orange(huggingface)
Which person has opponent Ike Clanton?
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:opponent <http://dbpedia.org/resource/Ike_Clanton> . ?uri rdf:type onto:Person}
Orange(huggingface)
Give me the count of interests of the philosopher whose primary interest is Metaphysics ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests <http://dbpedia.org/resource/Metaphysics> . ?x prop:mainInterests ?uri }
Orange(huggingface)
Where are the tombs of kings and queens who have died in England?
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:placeOfDeath <http://dbpedia.org/resource/England> . ?x prop:placeOfBurial ?uri . ?x rdf:type ...
Orange(huggingface)
Which famous horserace has seen both Fergie sutherland and the illustrious War of Attrition?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/War_Of_Attrition_(horse)> prop:race ?uri. <http://dbpedia.org/resource/Fergie_Sutherland> prop:race ?uri . }
Orange(huggingface)
Which team did Michael and Ryan Powell play for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Powell_(lacrosse)> onto:team ?uri. <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> onto:team ?uri . }
Orange(huggingface)
Name the musical band of Written in the Stars?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Written_in_the_Stars_(Elton_John_and_LeAnn_Rimes_song)> onto:musicalBand ?uri }
Orange(huggingface)
How many cars are similar to the ones assembled in the Jefferson North Assembly?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x prop:related ?uri . }
Orange(huggingface)
Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?
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:currentteam <http://dbpedia.org/resource/Michigan_Wolverines> . ?uri onto:formerTeam <http://...
Orange(huggingface)
Which university's graduates have worked in the Quartermaster corps?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit <http://dbpedia.org/resource/Quartermaster_Corps_(United_States_Army)> . ?x onto:almaMater ?uri . }
Orange(huggingface)
How many companies were founded in places where Dallas is the governing body ?
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:governingBody <http://dbpedia.org/resource/Dallas> . ?uri onto:foundationPlace ?x . ?ur...
Orange(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 res: <http://dbpedia.org/resource/> 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:A...
Orange(huggingface)
What are some cars which came before the ones on a GM B base?
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:automobilePlatform <http://dbpedia.org/resource/GM_B_platform> . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}
Orange(huggingface)
Count the number of people who graduated from universities affiliated with the NCAA.
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:athletics <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri...
Orange(huggingface)
What award was won by the executive producer of Shaun the Sheep?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Shaun_the_Sheep onto:executiveProducer ?x . ?x onto:award ?uri . }
Orange(huggingface)
who owns the ship Victoria?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Victoria_(ship)> onto:owner ?uri }
Orange(huggingface)
What is the national origin of Focke-Wulf Fw 260 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Focke-Wulf_Fw_260> prop:nationalOrigin ?uri }
Orange(huggingface)
Which city's mayor is married to Jean Marc Germain?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:spouse <http://dbpedia.org/resource/Jean-Marc_Germain> . ?uri prop:mayor ?x . }
Orange(huggingface)
In how many nations is Coconut a common food ingredient?
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:ingredient <http://dbpedia.org/resource/Coconut> . ?x prop:country ?uri . ?uri rdf:type...
Orange(huggingface)
Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum <http://dbpedia.org/resource/Chordate> . ?uri onto:order <http://dbpedia.org/resource/Diprotodontia> }
Orange(huggingface)
What company made facebook messenger and is the platform where Words of Gold can be played?
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/Words_of_Gold> onto:computingPlatform ?uri. <http://dbpedia.org/resource/...
Orange(huggingface)
Who first ascended a mountain of Mount Hoffmann?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mount_Hoffmann onto:firstAscentPerson ?uri }
Orange(huggingface)
Solon Spencer Beman has architected in how many cities?
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:architect <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x prop:locationTown ?uri...
Orange(huggingface)
Name the champion of National League?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:National_League prop:champion ?uri }
Orange(huggingface)
What are the airline hubs of Cascade Airways?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri }
Orange(huggingface)
How many ideologies do the political party of Boonchu Rojanastien hold?
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 { <http://dbpedia.org/resource/Boonchu_Rojanastien> prop:party ?x . ?x onto:ideology ?uri . ?x rd...
Orange(huggingface)
Which place of Geography Club is the location of Seattle Great Wheel ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Seattle_Great_Wheel> prop:locationTown ?uri. <http://dbpedia.org/resource/Geography_Club_(play)> prop:place ?uri}
Orange(huggingface)
Do the asiana airlines fly to Jeju airport?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Asiana_Airlines onto:targetAirport res:Jeju_International_Airport }
Orange(huggingface)
For how many cities's teams did David Bowens play?
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/David_Bowens> onto:formerTeam ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}
Orange(huggingface)
Which football players currently have their contracts with Stoke City F.C.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:currentclub <http://dbpedia.org/resource/Stoke_City_F.C.> }
Orange(huggingface)
Which military unit's garrison is Pentagon and command structure is United States Department of Defense?
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:garrison <http://dbpedia.org/resource/The_Pentagon> . ?uri onto:commandStructure <http://dbpe...
Orange(huggingface)
Is Sao Paulo the largest city of Brazil?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Brazil prop:largestCity res:São_Paulo }
Orange(huggingface)
Which maintainer of Cheasty Boulevard South is also the county seat of King County, Washington?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> onto:maintainedBy ?uri. <http://dbpedia.org/resource/King_County,_Washington> onto:countySeat ?uri}
Orange(huggingface)
How many people have been the first one to scale a peak in the Yosemite Park?
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:locatedInArea <http://dbpedia.org/resource/Yosemite_National_Park> . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}
Orange(huggingface)
To which company is the service "Nintendo eShop" associated with?
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:services <http://dbpedia.org/resource/Nintendo_eShop> . ?uri rdf:type onto:Company}
Orange(huggingface)
Name the person whose child is Irne Joliot-Curie?
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:children <http://dbpedia.org/resource/Irène_Joliot-Curie> . ?uri rdf:type onto:Person}
Orange(huggingface)
Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?
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/Ralf_Schumacher> . ?uri onto:child <http://dbpedia.org...
Orange(huggingface)
Which famous person is born in Marlboro Township, New Jersey?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:homeTown <http://dbpedia.org/resource/Marlboro_Township,_New_Jersey> . }
Orange(huggingface)
Name the company founded in US and created Visual Studio ?
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:foundation <http://dbpedia.org/resource/United_States> . ?uri prop:products <http://dbpedia.o...
Orange(huggingface)