question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who is the maker of the engine of Ford F-Series first generation?
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/Ford_F-Series_first_generation> prop:engine ?x . ?x onto:manufacturer ?uri . }
Orange(huggingface)
Where are the burial grounds of Willem Cornelis Janse van Rensburg and Thomas Franois Burgers?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Willem_Cornelis_Janse_van_Rensburg prop:restingplace ?uri. res:Thomas_François_Burgers prop:restingplace ?uri . }
Orange(huggingface)
Where did Georges Wolinski and Judson Huss died?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Georges_Wolinski prop:placeOfDeath ?uri. res:Judson_Huss prop:deathPlace ?uri}
Orange(huggingface)
How many different things are used as ingredients in Sweden?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:country <http://dbpedia.org/resource/Sweden> . ?x onto:ingredient ?uri . }
Orange(huggingface)
What magazine published Allal and is the employer of Peter Bergman?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allal> onto:publisher ?uri. <http://dbpedia.org/resource/Peter_Bergman_(comedian)> onto:employer ?uri}
Orange(huggingface)
What other destinations do airlines go to, whose flights also come to Glasgow?
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:targetAirport <http://dbpedia.org/resource/Glasgow_Airport> . ?x prop:destinations ?uri . ?x r...
Orange(huggingface)
List the country of Tokaj wine region?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tokaj_wine_region prop:country ?uri }
Orange(huggingface)
Who has fought in the conflicts around the Mississippi river?
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:place <http://dbpedia.org/resource/Mississippi_River> . ?x prop:combatant ?uri . ?x rdf:type o...
Orange(huggingface)
Which politicians died in cities built by the Roman emperor Charles 5?
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:builder <http://dbpedia.org/resource/Charles_V,_Holy_Roman_Emperor> . ?uri onto:deathPlace ?x . ?uri rdf:type onto:OfficeHolder}
Orange(huggingface)
Which movies have someone on their cast from Shelby County in Tennessee?
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/Shelby_County,_Tennessee> . ?uri prop:starring ?x . ?uri...
Orange(huggingface)
Who are the people which ITV(TV network) has employed?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:employer <http://dbpedia.org/resource/ITV_(TV_network)> . }
Orange(huggingface)
List all the nicknames of the city which has Torun gingerbread as one of it?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:Toruń_gingerbread . ?x prop:nickname ?uri . }
Orange(huggingface)
Which city is the resting place of the Martin Ragaway and Chuck Connors ?
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/Martin_Ragaway> onto:restingPlace ?uri. <http://dbpedia.org/resource/Chuck_Connors> onto:restingPlace ?uri . ?uri rdf...
Orange(huggingface)
Who is the office holder whose resting place is Monticello?
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:restingPlace <http://dbpedia.org/resource/Monticello> . ?uri rdf:type onto:OfficeHolder}
Orange(huggingface)
In which states does the river flow whose left tributary is Toms Creek?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Toms_Creek_(Monocacy_River)> onto:leftTributary ?x . ?x onto:state ?uri . }
Orange(huggingface)
Which fictional character portrayed in Terminator 2: Judgment Day is painted by Josh Friedman?
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:portrayer <http://dbpedia.org/resource/Terminator_2:_Judgment_Day> . ?uri onto:creator <http://dbpedia.org/resource/Josh_Friedman> . ?uri...
Orange(huggingface)
Find the total number of ingredients of the recepies whose ingredient is common Mushroom ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient <http://dbpedia.org/resource/Agaricus_bisporus> . ?x onto:ingredient ?uri }
Orange(huggingface)
Which newspapers are owned by companies which are under Rolv Erik Ryssdal?
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:keyPerson <http://dbpedia.org/resource/Rolv_Erik_Ryssdal> . ?uri prop:owners ?x . ?uri rdf:typ...
Orange(huggingface)
Which office holder's resting place is Alta Mesa Memorial Park and has Henry E. Catto, Jr. 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 prop:restingPlace <http://dbpedia.org/resource/Alta_Mesa_Memorial_Park> . ?uri prop:predecessor <h...
Orange(huggingface)
Who owns the newspaper which was founded by Nehru?
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:founder <http://dbpedia.org/resource/Jawaharlal_Nehru> . ?x onto:owner ?uri . ?x rdf:type onto...
Orange(huggingface)
Which cities have the river one of whose Tributary is the Missouri's big spring?
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:rightTributary <http://dbpedia.org/resource/Big_Spring_(Missouri)> . ?x onto:city ?uri . ?x rdf:type onto:River}
Orange(huggingface)
Count the different religions followed by Second Lieutenants in military.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank <http://dbpedia.org/resource/Second_lieutenant> . ?x onto:religion ?uri . }
Orange(huggingface)
Name the species of Liger?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liger onto:species ?uri }
Orange(huggingface)
What are some movies whose distributors are led by Kevin Tsujihara?
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:keyPerson <http://dbpedia.org/resource/Kevin_Tsujihara> . ?uri prop:distributor ?x . ?uri rdf:...
Orange(huggingface)
Which key person of Clinton Foundation is also the president of Jim Sasser?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Clinton_Foundation prop:keyPeople ?uri. res:Jim_Sasser onto:president ?uri}
Orange(huggingface)
How many writers speak a language belonging to the Germanic kind of languages?
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:languageFamily <http://dbpedia.org/resource/Germanic_languages> . ?uri prop:language ?x...
Orange(huggingface)
What are some other services of the company whose service is Onedrive?
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:service <http://dbpedia.org/resource/OneDrive> . ?x prop:services ?uri . ?x rdf:type onto:Comp...
Orange(huggingface)
What are some musicians who have worked with Dean Ambrose?
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:associatedMusicalArtist <http://dbpedia.org/resource/Dean_Ambrose> . ?uri rdf:type onto:MusicalArtist}
Orange(huggingface)
Name the company with product lines like Visual studio and Surface ?
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:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?uri onto:product <http://db...
Orange(huggingface)
What is the baseball team whose club manager's debut team is Houston Astros?
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:debutTeam <http://dbpedia.org/resource/Houston_Astros> . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}
Orange(huggingface)
Name the movies writtten by the group Monty Python?
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:writer <http://dbpedia.org/resource/Monty_Python> . ?uri rdf:type onto:Film}
Orange(huggingface)
Who is the head coach of the teams in Middlesbrough FC?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:club <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x onto:manager ?uri . }
Orange(huggingface)
What is the television show whose vocals are performed by April Stewart and Mona Marshall?
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:voices <http://dbpedia.org/resource/April_Stewart> . ?uri prop:voices <http://dbpedia.org/re...
Orange(huggingface)
Which basketball players have played in the league of National Basketball Association?
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:league <http://dbpedia.org/resource/National_Basketball_Association> . ?uri rdf:type onto:BasketballPlayer}
Orange(huggingface)
Rivers which end in Arkansas go through which cities?
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:mouthMountain <http://dbpedia.org/resource/Arkansas> . ?x onto:city ?uri . ?x rdf:type onto:River}
Orange(huggingface)
What basketball league's champion is Golden State Warriors?
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:champion <http://dbpedia.org/resource/Golden_State_Warriors> . ?uri rdf:type onto:BasketballL...
Orange(huggingface)
From how many different places did the weapons used in the American Indian wars originate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:usedInWar <http://dbpedia.org/resource/American_Indian_Wars> . ?x prop:origin ?uri . ?u...
Orange(huggingface)
For which team does Ramiro Pea play?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ramiro_Peña onto:team ?uri }
Orange(huggingface)
How many people are buried in Arlington National Cemetery?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeofburial <http://dbpedia.org/resource/Arlington_National_Cemetery> . }
Orange(huggingface)
How many architects are there who have made something used by Oakland athletics?
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:tenant <http://dbpedia.org/resource/Oakland_Athletics> . ?x prop:architect ?uri . }
Orange(huggingface)
Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?
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:relation <http://dbpedia.org/resource/Clinton_family> . ?uri onto:lieutenant <http://dbpedia.org/resource/Winston_Bryant> . ?uri rdf:type...
Orange(huggingface)
What are some bands out to texarkana?
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:origin <http://dbpedia.org/resource/Texarkana,_Texas> . ?uri rdf:type onto:Band}
Orange(huggingface)
Which licensee of EXXV-TV is also the licensee of WXXV-DT2 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> prop:licensee ?uri. <http://dbpedia.org/resource/WXXV-DT2> prop:licensee ?uri . }
Orange(huggingface)
In which places can we find the people won the Project Runaway Canada?
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:award <http://dbpedia.org/resource/Project_Runway_Canada> . ?x onto:residence ?uri . ?x rdf:type onto:Person}
Orange(huggingface)
Which band had the members of The Conglomerate, and has made 'Before I let you go'?
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_Conglomerate_(American_group)> prop:pastMembers ?uri. <http://dbpedia.org/resource/Before_I_Let_You_Go> onto:musicalArtist ?uri...
Orange(huggingface)
What is the religion of the ethnic group to which the relatives of Waxiang people belong?
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/Waxiang_people> prop:related ?x . ?x onto:religion ?uri . ?x rdf:type ont...
Orange(huggingface)
Under which common jurisdiction do Trinity School, Brentwood and Buckhurst Hill County High School fall?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trinity_School,_Brentwood> onto:localAuthority ?uri. <http://dbpedia.org/resource/Buckhurst_Hill_County_High_School> onto:localAuthority ?uri . }
Orange(huggingface)
What is the mascot of the unit whose garrison is Canberra ?
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:garrison <http://dbpedia.org/resource/Canberra> . ?x prop:mascot ?uri . ?x rdf:type onto:Milit...
Orange(huggingface)
Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> onto:routeStart ?uri. <http://dbpedia.org/resource/2011–12_FC_Spartak_Moscow_season> onto:homeStadium ?uri}
Orange(huggingface)
Was Gumus TV series first aired in Albania?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Gümüş_(TV_series)> prop:firstAired <http://dbpedia.org/resource/Albania> }
Orange(huggingface)
What river originates in the Connecticut Lakes?
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:source <http://dbpedia.org/resource/Connecticut_Lakes> . ?uri rdf:type onto:River}
Orange(huggingface)
Where is the person from whose military rank is Airman first class?
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:militaryRank <http://dbpedia.org/resource/Airman_first_class> . ?x prop:state ?uri . ?x rdf:ty...
Orange(huggingface)
Whose work is in the Musee d'orsay?
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:museum <http://dbpedia.org/resource/Musée_d'Orsay> . ?x prop:artist ?uri . ?uri rdf:ty...
Orange(huggingface)
What is the television show whose theme music composer's home town is El Sobrante, 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 ?uri WHERE { ?x onto:hometown <http://dbpedia.org/resource/El_Sobrante,_California> . ?uri prop:themeMusicComposer ...
Orange(huggingface)
What musicians are signed up with colpix 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 {?uri prop:label <http://dbpedia.org/resource/Colpix_Records> . ?uri rdf:type onto:MusicalArtist}
Orange(huggingface)
Was Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Australia_at_the_2008_Summer_Olympics prop:flagbearer res:Stephanie_Rice }
Orange(huggingface)
In which city are the schools whose district is Mumbai Suburban?
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:district <http://dbpedia.org/resource/Mumbai_Suburban_district> . ?x onto:city ?uri . ?x rdf:t...
Orange(huggingface)
What is the municipality of Patterson Houses?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Patterson_Houses onto:municipality ?uri }
Orange(huggingface)
In which city was Saleen Raptor designed and is also the birth location of Jimmy Diggs ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri. res:Jimmy_Diggs onto:birthPlace ?uri}
Orange(huggingface)
What kind of things are on the radio stations affiliated with the 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 { ?x prop:affiliations <http://dbpedia.org/resource/Baltimore_Ravens> . ?x onto:programmeFormat ?uri . ?...
Orange(huggingface)
Who has manufactured vehicles designed originally by NASA?
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:designCompany <http://dbpedia.org/resource/NASA> . ?x onto:manufacturer ?uri . ?x rdf:type onto:Automobile}
Orange(huggingface)
How many food items have an ingredient from the Sapindales family?
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:order <http://dbpedia.org/resource/Sapindales> . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}
Orange(huggingface)
List all the mebers of Mekong River Commission?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mekong_River_Commission prop:membership ?uri }
Orange(huggingface)
What are the names of the casualties of Eric Harris and Dylan Klebold?
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:deathCause <http://dbpedia.org/resource/Eric_Harris_and_Dylan_Klebold> . ?uri rdf:type onto:Person}
Orange(huggingface)
In which fields are pupils of Edouard Chavannes working?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Édouard_Chavannes . ?x prop:fields ?uri . }
Orange(huggingface)
List the outflows of the lake whose one of the outflows is Benu rive?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x onto:outflow ?uri . }
Orange(huggingface)
Count the number of first drivers in all the GPs where Mika Hakkinen was a pole driver?
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:poleDriver <http://dbpedia.org/resource/Mika_Häkkinen> . ?x onto:firstDriver ?uri . ?uri rdf:type onto:RacingDriver}
Orange(huggingface)
Count all the shows whose music composers are in Oysterhead.
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:associatedMusicalArtist <http://dbpedia.org/resource/Oysterhead> . ?uri prop:themeMusic...
Orange(huggingface)
Count the different number of academic areas covered by publications of SAGE?
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:publisher <http://dbpedia.org/resource/SAGE_Publications> . ?x onto:academicDiscipline ?uri . }
Orange(huggingface)
Who all have been in bands which have recorded their work in the Electric Lady Studios?
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:recordedIn <http://dbpedia.org/resource/Electric_Lady_Studios> . ?uri prop:associatedActs ?x ....
Orange(huggingface)
Did Jerry Rice study in Oktoc Mississippi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Jerry_Rice> prop:highSchool <http://dbpedia.org/resource/Oktoc,_Mississippi> }
Orange(huggingface)
Give me the total number of membership of the organisations which have memebers as Azerbaijan?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership <http://dbpedia.org/resource/Azerbaijan> . ?x prop:membership ?uri }
Orange(huggingface)
Where was Live in Detroit, MI recorded?
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 }
Orange(huggingface)
What tv show is created by Brian Graden?
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 rdf:type onto:TelevisionShow}
Orange(huggingface)
Name the fictional character whose relatives are Huey, Dewey, and Louie and is of species 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/Huey,_Dewey,_and_Louie> . ?uri onto:species <http://db...
Orange(huggingface)
Who wrote the musical based on Mary Poppins?
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:basedOn <http://dbpedia.org/resource/Mary_Poppins> . ?x onto:author ?uri . ?x rdf:type onto:Musical}
Orange(huggingface)
Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?
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/PlayStation_4> prop:predecessor ?uri. <http://dbpedia.org/resource/Oddworld:_Munch's_Oddysee> onto:developer ?uri}
Orange(huggingface)
Which motion picture stories were edited by Ishir Honda?
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:writer <http://dbpedia.org/resource/Ishirō_Honda> . ?uri rdf:type onto:Film}
Orange(huggingface)
where did soccer bowl take place in 76?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Soccer_Bowl_'76> onto:city ?uri }
Orange(huggingface)
Bridges over which rivers are made of Wrought Iron?
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/Wrought_iron> . ?x onto:river ?uri . ?x rdf:type onto:Br...
Orange(huggingface)
On which subjects does the author of the novel Thud! delve?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri }
Orange(huggingface)
Name all sitcoms whose theme music is made by Miley Cyrus?
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:musicalBand <http://dbpedia.org/resource/Miley_Cyrus> . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
What religion's politicians are in the Malaysian Chinese association?
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:party <http://dbpedia.org/resource/Malaysian_Chinese_Association> . ?x onto:religion ?uri . ?x rdf:type onto:Politician}
Orange(huggingface)
What softwares were created by Apple Productivity Experience Group?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri }
Orange(huggingface)
What artists are associated with the members of the Catalin Maruta?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Cătălin_Măruță . ?x onto:associatedMusicalArtist ?uri . }
Orange(huggingface)
How many scientists are known for the Manhatten 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 COUNT(?uri) WHERE {?uri prop:knownFor <http://dbpedia.org/resource/Manhattan_Project> . ?uri rdf:type onto:Scientis...
Orange(huggingface)
Give me the list of cars which are the predecessor of Full Sized Cars?
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:class <http://dbpedia.org/resource/Full-size_car> . ?x onto:predecessor ?uri . ?x rdf:type ont...
Orange(huggingface)
Which clubs play in the La Liga?
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:league <http://dbpedia.org/resource/La_Liga> . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub...
Orange(huggingface)
What is the layout of Subaru Legacy (second generation) ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Legacy_(second_generation)> onto:layout ?uri }
Orange(huggingface)
How many different products are there of the companies located in the US?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location <http://dbpedia.org/resource/United_States> . ?x onto:product ?uri . }
Orange(huggingface)
Give me all office holders who finally retired in Montpelier, Orange, Virgina?
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/Montpelier_(Orange,_Virginia)> . ?uri rdf:type onto...
Orange(huggingface)
Who were the american football players who played for Dallas Cowboys?
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:team <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri rdf:type onto:AmericanFootballPlayer}
Orange(huggingface)
Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company?
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:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri prop:judges <http://dbp...
Orange(huggingface)
What is the genre of the Band whose home town is County Westmeath?
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/County_Westmeath> . ?x prop:genre ?uri . ?x rdf:type ont...
Orange(huggingface)
How many movies did Michael Deeley produce?
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 {?uri prop:producer <http://dbpedia.org/resource/Michael_Deeley> . ?uri rdf:type onto:Film}
Orange(huggingface)
Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?
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:awards <http://dbpedia.org/resource/Royal_Society> . ?uri onto:academicAdvisor <http://dbpedi...
Orange(huggingface)
The pope whose shrine is in St Peter's Basilica was venerated in which sects?
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:majorShrine <http://dbpedia.org/resource/St._Peter's_Basilica> . ?x prop:veneratedIn ?uri . ?x...
Orange(huggingface)
List the people who are in the board of an organization kickstarted in New York.
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:foundation <http://dbpedia.org/resource/New_York> . ?uri onto:board ?x . ?uri rdf:type onto:Pe...
Orange(huggingface)
How many islands belong to archipelagos located in the pacific?
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:location <http://dbpedia.org/resource/Pacific_Ocean> . ?uri prop:archipelago ?x . ?uri ...
Orange(huggingface)
Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?uri. res:North–South_Transport_Corridor onto:routeEnd ?uri}
Orange(huggingface)