question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
List the people educated at Harvard-Westlake School and has resting place as Palo Alto, 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 {?uri onto:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri prop:restingPlace <htt... | Orange(huggingface) |
To which students did Ernest Rutherford advise to? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:Ernest_Rutherford . } | Orange(huggingface) |
How many games are released for virtual consoles? | 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:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri rdf:type onto:VideoGame} | Orange(huggingface) |
Which company developed the language designed by Lars Bak? | 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:designer <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x prop:developer ?uri... | Orange(huggingface) |
Which famous political figure appointed william cushing, and also founded Pittsburgh | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri. res:William_Cushing onto:appointer ?uri} | Orange(huggingface) |
How many games have a composer who worked for the Creatures? | 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:occupation <http://dbpedia.org/resource/Creatures_(company)> . ?uri prop:composer ?x . ... | Orange(huggingface) |
Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:province res:Metropolitan_City_of_Venice . ?uri onto:leaderName res:Luigi_Brugnaro . } | Orange(huggingface) |
Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:director <http://dbpedia.org/resource/Ridley_Scott> . ?uri onto:musicComposer <http://dbpedia... | Orange(huggingface) |
In how many places can I find tombs of people who fought in the Norwalk Trainband? | 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:militaryUnit <http://dbpedia.org/resource/Norwalk_Trainband> . ?x prop:restingplace ?uri . } | Orange(huggingface) |
List all important people of the non profit organization which has Hilary Clinton as a key person ? | 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:keyPeople <http://dbpedia.org/resource/Hillary_Clinton> . ?x prop:keyPeople ?uri . ?x rdf:type... | Orange(huggingface) |
Name the scientist whose doctoral supervisor's doctoral student is John Bowlby? | 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:doctoralStudent <http://dbpedia.org/resource/John_Bowlby> . ?uri prop:doctoralAdvisor ?x . ?ur... | Orange(huggingface) |
Give me a count of musicians who play an instrument developed by George Beauchamp? | 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:keyPeople <http://dbpedia.org/resource/George_Beauchamp> . ?uri onto:instrument ?x . ?u... | Orange(huggingface) |
Name the basketball players drafted by Los Angeles Clippers ? | 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:draftTeam <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri rdf:type onto:BasketballP... | Orange(huggingface) |
List the alma mater of the congressmen who attended Nashville, 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 prop:almaMater <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x onto:almaMater ?uri . ?x rdf... | Orange(huggingface) |
How many games have a publisher based in US? | 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:location <http://dbpedia.org/resource/United_States> . ?uri onto:publisher ?x . ?uri rdf:type onto:VideoGame} | Orange(huggingface) |
List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ? | 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:layout <http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout> . ?x onto:layout ?uri . ?x rdf:type onto:Automobile} | Orange(huggingface) |
Did Annie Leibovitz do the cover of The Road Ahead? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/The_Road_Ahead_(Bill_Gates_book)> onto:coverArtist <http://dbpedia.org/resource/Annie_Leibovitz> } | Orange(huggingface) |
Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ? | 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:publisher <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri prop:author <http://dbpedi... | Orange(huggingface) |
In which state can I find Burr Truss styled 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:style <http://dbpedia.org/resource/Burr_Truss> . ?x onto:state ?uri . ?x rdf:type onto:Bridge} | Orange(huggingface) |
Was christina crawford trained by Booker T? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { <http://dbpedia.org/resource/Christina_Crawford_(wrestler)> prop:trainer <http://dbpedia.org/resource/Booker_T_(wrestler)> } | Orange(huggingface) |
Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex? | 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:mouthMountain <http://dbpedia.org/resource/Southend-on-Sea> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Essex> . ?uri rdf:type on... | Orange(huggingface) |
What is the sea connected to Oulu and Turku? | 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:cities <http://dbpedia.org/resource/Oulu> . ?uri prop:cities <http://dbpedia.org/resource/Tu... | Orange(huggingface) |
What is the american football league whose champion is from Kansas City, Missouri? | 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/Kansas_City,_Missouri> . ?uri prop:champion ?x . ?uri rdf:ty... | Orange(huggingface) |
Which officers fought in the war of Siege of Fort Recovery? | 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:battle <http://dbpedia.org/resource/Siege_of_Fort_Recovery> . ?uri rdf:type onto:OfficeHolder} | Orange(huggingface) |
Name the TV shows with network as NBC and company as Paramount Television ? | 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:network <http://dbpedia.org/resource/NBC> . ?uri prop:company <http://dbpedia.org/resource/Pa... | Orange(huggingface) |
In which states can I find Truss 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:style <http://dbpedia.org/resource/Truss_bridge> . ?x onto:state ?uri . ?x rdf:type onto:Bridg... | Orange(huggingface) |
What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Linda_Hogan onto:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri} | Orange(huggingface) |
Who is the writer of The Sandman (Vertigo) ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Sandman_(Vertigo)> prop:writers ?uri } | Orange(huggingface) |
Which science fiction show has Steven Moffat as executive producer ? | 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:executiveProducer <http://dbpedia.org/resource/Steven_Moffat> . ?uri prop:genre <http://dbped... | Orange(huggingface) |
Count all that was built by a company whose leader is Kazuo Hirai? | 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:keyPeople <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri onto:manufacturer ?x . } | Orange(huggingface) |
Who has given guest appearances on the TV Episodes whose music was done by Mama Makes 3? | 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:music <http://dbpedia.org/resource/Mama_Makes_Three> . ?x prop:guests ?uri . ?x rdf:type onto:... | Orange(huggingface) |
What is the purpose of Maharashtra Chess Association ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:PyChess onto:genre ?uri} | Orange(huggingface) |
Where did the 2015 MLS All-Star Game take place? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_MLS_All-Star_Game> prop:city ?uri } | Orange(huggingface) |
Name the sitcoms whose network's owning company is Chris-Craft Industries? | 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:owningCompany <http://dbpedia.org/resource/Chris-Craft_Industries> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow} | Orange(huggingface) |
Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | 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:creator <http://dbpedia.org/resource/Simon_Fuller> . ?uri onto:presenter <http://dbpedia.org/... | Orange(huggingface) |
Who owns the bank where Fabio Mercurio works? | 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/Fabio_Mercurio> prop:institution ?x . ?x prop:owner ?uri . ?x rdf:type on... | Orange(huggingface) |
Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland? | 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:distributor <http://dbpedia.org/resource/RKO_Pictures> . ?uri onto:cinematography <http://dbpedia.org/resource/Gregg_Toland> } | Orange(huggingface) |
Name the mountain located in California and has parent peak as Nevado de Toluca ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea <http://dbpedia.org/resource/California> . ?uri onto:parentMountainPeak <http://dbpedia.org/resource/Nevado_de_Toluca> . ?u... | Orange(huggingface) |
Name some dishes made with flowering plants. | 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:division <http://dbpedia.org/resource/Flowering_plant> . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food} | Orange(huggingface) |
Count the units garrisoned at Arlington County, Virginia. | 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:garrison <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri rdf:type onto:MilitaryUnit} | Orange(huggingface) |
Who all have been judges on CTV Network's shows? | 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:network <http://dbpedia.org/resource/CTV_Television_Network> . ?x prop:judges ?uri . ?x rdf:ty... | Orange(huggingface) |
Which fictional character portrayed by Roger barton has Darth Vader as family member ? | 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:family <http://dbpedia.org/resource/Darth_Vader> . ?uri prop:portrayer <http://dbpedia.org/re... | Orange(huggingface) |
How many thesis were supervised by Ernest Rutherford? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:doctoralAdvisor <http://dbpedia.org/resource/Ernest_Rutherford> . } | Orange(huggingface) |
Name a river starting from arequipa region? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion <http://dbpedia.org/resource/Arequipa_Region> . ?uri rdf:type onto:River} | Orange(huggingface) |
What sports are played in schools in Vashi? | 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:city <http://dbpedia.org/resource/Vashi> . ?x onto:sport ?uri . ?x rdf:type onto:School} | Orange(huggingface) |
Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:Sierra_del_Merendón onto:country ?uri} | Orange(huggingface) |
Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded? | 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/Daund_Junction_railway_station> onto:servingRailwayLine ?uri. <http://dbpedia.org/resource/99_(2009_film)> prop:recorded ?uri} | Orange(huggingface) |
Who wrote the musical whose composer is Emil Dean Zoghby? | 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:musicBy <http://dbpedia.org/resource/Emil_Dean_Zoghby> . ?x onto:author ?uri . ?x rdf:type onto:Musical} | Orange(huggingface) |
Give me the sitcoms where Eliza Schneider and Isaac Hayes gave voice? | 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/Eliza_Schneider> . ?uri prop:voices <http://dbpedia.org/... | Orange(huggingface) |
Name the fictional character whose voice's animator is Hardie Gramatky? | 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:animator <http://dbpedia.org/resource/Hardie_Gramatky> . ?uri onto:voice ?x . ?uri rdf:type on... | Orange(huggingface) |
List the awards won by the fashion designer which have been recognized by Tennessee State Museum ? | 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/Tennessee_State_Museum> . ?x onto:award ?uri . ?x rdf:type onto:FashionDesigner} | Orange(huggingface) |
How many services are there of the companies whose services is Web hosting service ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services <http://dbpedia.org/resource/Web_hosting_service> . ?x prop:services ?uri } | Orange(huggingface) |
How many famous people are from the Filipinos? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:stateOfOrigin <http://dbpedia.org/resource/Filipinos> . } | Orange(huggingface) |
List everything in which saxophone players have been cast. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:instrument res:Saxophone . ?uri prop:starring ?x . } | Orange(huggingface) |
Which river's source place is Gloucestershire and has mouth in North Sea? | 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:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri onto:riverMouth <http://dbpedia.org/resource/North_Sea> . ?uri rdf:type ... | Orange(huggingface) |
From what american football teams did Carlos Emmons play? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carlos_Emmons_(American_football)> onto:formerTeam ?uri } | Orange(huggingface) |
Which BBC's TV show is related with the Sarah Jane Adventures? | 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:network <http://dbpedia.org/resource/BBC_HD> . ?uri onto:related <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri rdf:type ... | Orange(huggingface) |
Which university is led by Jay Gogue? | 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:president <http://dbpedia.org/resource/Jay_Gogue> . ?uri rdf:type onto:University} | Orange(huggingface) |
Where does the river end which starts in Richmond Park? | 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:sourcePlace <http://dbpedia.org/resource/Richmond_Park> . ?x prop:mouthLocation ?uri . ?x rdf:... | Orange(huggingface) |
Which Harris County based company is a subsidiary of Tandem Computers? | 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:locationCity <http://dbpedia.org/resource/Harris_County,_Texas> . ?uri onto:subsidiary <http://dbpedia.org/resource/Tandem_Computers> . ?... | Orange(huggingface) |
Who is the child of John Tyler, Sr.? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Tyler,_Sr.> onto:child ?uri } | Orange(huggingface) |
Which city's neighboring municipalities are Lancy and Pregny-Chambsy? | 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:neighboringMunicipalities <http://dbpedia.org/resource/Lancy> . ?uri onto:neighboringMunicipa... | Orange(huggingface) |
Where was the battle fought where 2nd Foreign Infantry Regiment participated? | 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/2nd_Foreign_Infantry_Regiment> onto:battle ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict} | Orange(huggingface) |
Who narrated the albums in which Harry Nilsson performed? | 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:artist <http://dbpedia.org/resource/Harry_Nilsson> . ?x prop:narrated ?uri . ?x rdf:type onto:... | Orange(huggingface) |
What are on the borders of Shimsa Plateau? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:ShimÅsa_Plateau onto:border ?uri } | Orange(huggingface) |
Who all did their high school in Denbigh high School? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:highSchool <http://dbpedia.org/resource/Denbigh_High_School_(Newport_News,_Virginia)> } | Orange(huggingface) |
What are all the countires where food related to tuna salad is consumed? | 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 res:Tuna_salad . ?x prop:country ?uri . } | Orange(huggingface) |
What are some relatives of the people who fought in Operation Barbarossa? | 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:battle <http://dbpedia.org/resource/Operation_Barbarossa> . ?x onto:relation ?uri . ?x rdf:type onto:Person} | Orange(huggingface) |
Which comic characters were created by Paul Dini? | 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:creators <http://dbpedia.org/resource/Paul_Dini> . ?uri rdf:type onto:ComicsCharacter} | Orange(huggingface) |
What is the place of birth of the stars of Auto Shankar ? | 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/Auto_Shankar_(film)> prop:starring ?x . ?x onto:birthPlace ?uri . } | Orange(huggingface) |
Name the military units whose command structure's headquarters is The Pentagon? | 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:headquarters <http://dbpedia.org/resource/The_Pentagon> . ?uri onto:commandStructure ?x . ?uri... | Orange(huggingface) |
In how many places has Don R. Berlin worked? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Don_R._Berlin> onto:employer ?uri . } | Orange(huggingface) |
Name the TV shows whose developer is J. Michael Straczynski and executive producer is Douglas Netter? | 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:developer <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri onto:executiveProducer <http://dbpedia.org/resource/Douglas_Netter>... | Orange(huggingface) |
How many books are written by the author who is famous for Novelas Ejemplares? | 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:notableWork <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri onto:author ?x . ?uri rdf:type onto:Book} | Orange(huggingface) |
Did the New Way party merge in the One Israel party? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/New_Way_(Israel)> onto:mergedIntoParty <http://dbpedia.org/resource/One_Israel> } | Orange(huggingface) |
From which country is Lawrence Okoye's nationality? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Lawrence_Okoye prop:nationality ?uri } | Orange(huggingface) |
List some pupils of National Science Medal winning scientists? | 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:prizes <http://dbpedia.org/resource/National_Medal_of_Science> . ?x prop:doctoralStudents ?uri... | Orange(huggingface) |
Count the number of sports played by the school which also plays Association football ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport <http://dbpedia.org/resource/Association_football> . ?x onto:sport ?uri } | Orange(huggingface) |
In which fields are both Paul Demiville and Sylvain levi experts? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Sylvain_Lévi prop:fields ?uri . } | Orange(huggingface) |
For all the senators who once studied in Sturm College of Law, give their burial 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 { ?x onto:almaMater <http://dbpedia.org/resource/Sturm_College_of_Law> . ?x prop:restingplace ?uri . ?x ... | Orange(huggingface) |
List the people who were born in Gelnhausen and graduated from Pepperdine University? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:birthPlace <http://dbpedia.org/resource/Gelnhausen> . ?uri prop:education <http://dbpedia.org... | Orange(huggingface) |
Who starred in Awakening and fifety five days at peknig ? | 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_Awakening_(1980_film)> prop:starring ?uri. <http://dbpedia.org/resource/55_Days_at_Peking> onto:starring ?uri . } | Orange(huggingface) |
Name the movies distributed by Warner Bros. and directed by Ridley Scott? | 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:distributor <http://dbpedia.org/resource/Warner_Bros.> . ?uri prop:director <http://dbpedia.o... | Orange(huggingface) |
Where are the tombs of alumni of national academy museum and school? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:award res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . } | Orange(huggingface) |
What is the appliance build jointly by Sony and Asus? | 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:manufacturer <http://dbpedia.org/resource/Sony> . ?uri onto:manufacturer <http://dbpedia.org/resource/Asus> . ?uri rdf:type onto:Informa... | Orange(huggingface) |
Name the profession of Oamr D Conger for which Jack Ryan was also nominated? | 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/Jack_Ryan_(politician)> onto:nominee ?uri. <http://dbpedia.org/resource/Omar_D._Conger> prop:order ?uri} | Orange(huggingface) |
Name the TV show whose composer is Judy Hart Angelo and company as Paramount Television ? | 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:composer <http://dbpedia.org/resource/Judy_Hart_Angelo> . ?uri prop:company <http://dbpedia.o... | Orange(huggingface) |
Where did the people die who were known for Young Life? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:knownFor <http://dbpedia.org/resource/Young_Life> . ?x onto:deathPlace ?uri . ?x rdf:type onto:Person} | Orange(huggingface) |
What religion are the characters of Absolutely Fabulous from? | 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:series <http://dbpedia.org/resource/Absolutely_Fabulous> . ?x onto:religion ?uri . ?x rdf:type... | Orange(huggingface) |
Which politician's son is buried in Metairie Cementery? | 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:placeofburial <http://dbpedia.org/resource/Metairie_Cemetery> . ?uri onto:child ?x . ?uri rdf:... | Orange(huggingface) |
what are some devices made by asus? | 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:manufacturer <http://dbpedia.org/resource/Asus> . ?uri rdf:type onto:InformationAppliance} | Orange(huggingface) |
What is the largest city of Pulau Ubin? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri } | Orange(huggingface) |
Who are some american football players whose high school is Oktoc, Mississippi? | 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:highSchool <http://dbpedia.org/resource/Oktoc,_Mississippi> . ?uri rdf:type onto:AmericanFoot... | Orange(huggingface) |
Where does the road starting from Madison, Wisconsin end? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x onto:routeStart ?uri . ?x rdf:type onto:Road} | Orange(huggingface) |
what are the nicknames of the people who are in Ekstraliga? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:league <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x prop:nickname ?uri . } | Orange(huggingface) |
Does Cohoes a junction on the NY State Route 470? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/New_York_State_Route_470> onto:routeJunction <http://dbpedia.org/resource/Cohoes,_New_York> } | Orange(huggingface) |
Is GIMP written in GTK+? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { <http://dbpedia.org/resource/GIMP> prop:programmingLanguage <http://dbpedia.org/resource/GTK+> } | Orange(huggingface) |
Who is the fictional character who starred in The Dognapper? | 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:voice <http://dbpedia.org/resource/The_Dognapper> . ?uri rdf:type onto:FictionalCharacter} | Orange(huggingface) |
How many different layouts do cars designed by Oliver Boulay have? | 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:designer <http://dbpedia.org/resource/Olivier_Boulay> . ?x onto:layout ?uri . } | Orange(huggingface) |
Who is the writer of He's a Pirate ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> prop:writer ?uri } | Orange(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.