question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
What are the mammals whose phylum is Chordate? | 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:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal} | Orange(huggingface) |
Whose deputy is Neil Brown? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:deputy <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . } | Orange(huggingface) |
List all the doctoral student of the scientist who has advised 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 prop:doctoralStudents <http://dbpedia.org/resource/John_Bowlby> . ?x prop:doctoralStudents ?uri . ?... | Orange(huggingface) |
Which source of broad creek is the Audenried tunnel located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Broad_Creek_(Susquehanna_River)> onto:source ?uri. <http://dbpedia.org/resource/Audenried_Tunnel> onto:location ?uri} | Orange(huggingface) |
What is the citizenship of Erastus Wiman? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Erastus_Wiman onto:citizenship ?uri } | Orange(huggingface) |
Who has authored books published by the Perkins school for the Blind? | 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:publisher <http://dbpedia.org/resource/Perkins_School_for_the_Blind> . ?x onto:author ?uri . ?x rdf:type onto:WrittenWork} | Orange(huggingface) |
Name the office holder whose child is Lori Black and predecessor is Henry E Catto Jr? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:children <http://dbpedia.org/resource/Lori_Black> . ?uri onto:predecessor <http://dbpedia.org... | Orange(huggingface) |
What is the origin of the musical artist whose associated band is Ziggi Recado? | 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:associatedBand <http://dbpedia.org/resource/Ziggi_Recado> . ?x prop:origin ?uri . ?x rdf:type ... | Orange(huggingface) |
How many relatives are there of veterans of operation Barbarossa? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle <http://dbpedia.org/resource/Operation_Barbarossa> . ?x onto:relation ?uri . } | Orange(huggingface) |
Name all the soccer players who played in an under 18 club for 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 prop:league <http://dbpedia.org/resource/La_Liga> . ?uri prop:youthclubs ?x . ?uri rdf:type onto:So... | Orange(huggingface) |
In which religions are both Pope Gregory 1 and Edwin of Northumbria revered? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Pope_Gregory_I prop:veneratedIn ?uri. res:Edwin_of_Northumbria prop:veneratedIn ?uri . } | Orange(huggingface) |
Give me a count of bridges located in California ? | 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:locatedInArea <http://dbpedia.org/resource/California> . ?uri rdf:type onto:Bridge} | Orange(huggingface) |
What was the stadium of Panionios G.S.S. in 2014-15 season ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri } | Orange(huggingface) |
Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova? | 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/Rostov-Glavny> onto:servingRailwayLine ?uri. <http://dbpedia.org/resource/Nina_Vislova> prop:placeOfBirth ?uri} | Orange(huggingface) |
Name the Fox TV show judged by Rand Jackson? | 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/Randy_Jackson> . ?uri prop:channel <http://dbpedia.org/re... | Orange(huggingface) |
What is the subject of The Prodigal son ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> prop:subject ?uri } | Orange(huggingface) |
Where does the river flow into which begins in Lebrsnik? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:riverMouth ?uri . } | Orange(huggingface) |
Which person belongs to the board of Howard Hughes Medical Institute? | 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:board <http://dbpedia.org/resource/Howard_Hughes_Medical_Institute> . ?uri rdf:type onto:Person} | Orange(huggingface) |
Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2008–09_Marquette_Golden_Eagles_men's_basketball_team> prop:headcoach ?uri } | Orange(huggingface) |
What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language) | 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/LG_Optimus_Vu> onto:operatingSystem ?uri. <http://dbpedia.org/resource/Dart_(programming_language)> prop:developer ?uri} | Orange(huggingface) |
Who was the architect of the stadium currently run by Brandenton? | 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:operator <http://dbpedia.org/resource/Bradenton,_Florida> . ?x prop:architect ?uri . ?x rdf:ty... | Orange(huggingface) |
Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 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. <http://dbpedia.org/resource/Cheasty_Boulevard_South> onto:maintainedBy ?uri} | Orange(huggingface) |
Which company released the software RenderMan? | 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/RenderMan_(software)> . ?uri rdf:type onto:Company} | Orange(huggingface) |
Count the battles fought by Raoul Magrin-Vernerey? | 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/Raoul_Magrin-Vernerey> prop:battles ?uri . ?uri rdf:type onto:Mili... | Orange(huggingface) |
What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning? | 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:affiliation <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_of_Higher_Learning> . ?x onto:sport ?uri . ?x rdf:typ... | Orange(huggingface) |
Who is the maker of Eristoff? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri } | Orange(huggingface) |
Who are the associated musical artist of the artists of band Shorty Rogers? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Shorty_Rogers . ?x onto:associatedMusicalArtist ?uri . } | Orange(huggingface) |
To which label did The Producers and I pray on Christmas sign up? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:GetTV onto:parentOrganisation ?uri} | Orange(huggingface) |
Where is the station whose sister channel is the Channel 3 in Thailand? | 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:sisterStations <http://dbpedia.org/resource/Channel_3_(Thailand)> . ?x prop:city ?uri . ?x rdf... | Orange(huggingface) |
Which sports are played at both the Polytech uni of Bataan and Taguig? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri . } | Orange(huggingface) |
Who was the vice president under which elizabeth alexander served? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth_Alexander_(press_secretary)> onto:vicePresident ?uri . } | Orange(huggingface) |
What is the state of origin of the president whose alma mater is Hellenic Naval Academy ? | 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/Hellenic_Naval_Academy> . ?x onto:stateOfOrigin ?uri . ... | Orange(huggingface) |
Who is the starring of the movies such that music is by Raamlaxman? | 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/Raamlaxman> . ?x onto:starring ?uri . ?x rdf:type onto:Film... | Orange(huggingface) |
Count the number of members of the organization which have Austria as one of the member ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership <http://dbpedia.org/resource/Austria> . ?x prop:membership ?uri } | Orange(huggingface) |
What is the city nearest to the islands in the Northwestern Hawaiian Islands? | 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:archipelago <http://dbpedia.org/resource/Northwestern_Hawaiian_Islands> . ?x prop:nearestCity ... | Orange(huggingface) |
Who is married to Gerard Pique? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Gerard_Piqué . } | Orange(huggingface) |
Is the Vadodara railway junction onwed by Indian Railway Ministry? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Vadodara_Junction_railway_station> onto:owningOrganisation <http://dbpedia.org/resource/Ministry_of_Railways_(India)> } | Orange(huggingface) |
What products are made by Tehran based companies? | 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:location <http://dbpedia.org/resource/Tehran> . ?x onto:product ?uri . ?x rdf:type onto:Compan... | Orange(huggingface) |
Was Elton John a chairman of a Watford FC Season? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/1999–2000_Watford_F.C._season> onto:chairman <http://dbpedia.org/resource/Elton_John> } | Orange(huggingface) |
Who all have been a president of educational institutes in Paud? | 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:location <http://dbpedia.org/resource/Paud> . ?x prop:president ?uri . ?x rdf:type onto:Educat... | Orange(huggingface) |
What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth? | 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/Cowombat_Flat> . ?uri onto:riverMouth <http://dbpedia.org/resource/Murray_Mouth> . ?uri rdf:type onto... | Orange(huggingface) |
What sports team's arena is The Palace of Auburn Hills | 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:arena <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri rdf:type onto:SportsTea... | Orange(huggingface) |
How many movies did Joel Schumacher direct? | 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:director <http://dbpedia.org/resource/Joel_Schumacher> . ?uri rdf:type onto:Film} | Orange(huggingface) |
Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents <http://dbpedia.org/resource/Charles_Drummond_Ellis> . ?uri prop:knownFor <h... | Orange(huggingface) |
List the area of radio stations whose sister station is WBCQ-FM? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ-FM> prop:sisterStations ?x . ?x prop:area ?uri . } | Orange(huggingface) |
What is the draft team of the Antoine Bibeau and also had player named Nathan Dempsey? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri. res:Nathan_Dempsey prop:playedFor ?uri} | Orange(huggingface) |
How many different people hold authority over the members of Balanidae family? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family <http://dbpedia.org/resource/Balanidae> . ?x onto:binomialAuthority ?uri . } | Orange(huggingface) |
Name the musical artists whose label is given by Kobalt Label Services? | 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/Kobalt_Label_Services> . ?uri rdf:type onto:MusicalArtist} | Orange(huggingface) |
Name the person with opponents Ike Clanton and Tom McLaury? | 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 onto:opponent <http://dbpedia.org/resource/Tom_McLaury> . ?uri rdf:type onto:P... | Orange(huggingface) |
Give me a list of all the buildings which are located in districts governed by John Tory. | 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:leaderName <http://dbpedia.org/resource/John_Tory> . ?uri onto:location ?x . ?uri rdf:type ont... | Orange(huggingface) |
List the first drivers of Grand Prixes 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 ?uri WHERE { ?x onto:poleDriver <http://dbpedia.org/resource/Mika_Häkkinen> . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix} | Orange(huggingface) |
Which video game composed by Hirokazu Tanaka can be played on virtual Console ? | 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:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri prop:composer <http://... | Orange(huggingface) |
Which award that has been given to James F Obrien, had used Laemmle Theatres for some service? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> onto:service ?uri. <http://dbpedia.org/resource/James_F._O'Brien> onto:award ?uri} | Orange(huggingface) |
Where has Garbage recorded its singles? | 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:producer <http://dbpedia.org/resource/Garbage_(band)> . ?x onto:recordedIn ?uri . ?x rdf:type onto:Single} | Orange(huggingface) |
How many movies music composers are associated with Demis Roussos ? | 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:associatedActs <http://dbpedia.org/resource/Demis_Roussos> . ?uri onto:musicComposer ?x... | Orange(huggingface) |
Who is the producer of the device which is the operating system of Now TV ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Now_TV_(UK)> onto:operatingSystem ?x . ?x onto:manufacturer ?uri . } | Orange(huggingface) |
What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:company <http://dbpedia.org/resource/Paramount_Television> . ?uri prop:themeMusicComposer <ht... | Orange(huggingface) |
What is the draft team of Dale Mitchell (ice hockey) ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dale_Mitchell_(ice_hockey)> onto:draftTeam ?uri } | Orange(huggingface) |
What currencies are circulated in the countries where people speak French? | 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:officialLanguage <http://dbpedia.org/resource/French_language> . ?x onto:currency ?uri . ?x rdf:type onto:Location} | Orange(huggingface) |
Name the shows whose theme was composed by a band in which Jay Lane used to be? | 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/Jay_Lane> . ?uri prop:themeMusicComposer ?x . ?u... | Orange(huggingface) |
Count the number of fileds of the scientist whose one of the interest is Chinese poetry? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields <http://dbpedia.org/resource/Chinese_poetry> . ?x prop:fields ?uri } | Orange(huggingface) |
Murray Gold has composed music for how many things? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:composer <http://dbpedia.org/resource/Murray_Gold> . } | Orange(huggingface) |
List the current members of Metro Station (band) ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Station_(band)> prop:currentMembers ?uri } | Orange(huggingface) |
In which cities were the chess grand masters born? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:title <http://dbpedia.org/resource/Grandmaster_(chess)> . ?x onto:birthPlace ?uri . } | Orange(huggingface) |
How many famous people are born in Long Island? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:birthPlace <http://dbpedia.org/resource/Long_Island> . } | Orange(huggingface) |
How many veterans are buried in the 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 {?uri onto:restingPlace <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:MilitaryPerson} | Orange(huggingface) |
How many other important things has the painter of Sarah Jane Adventures done? | 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/The_Sarah_Jane_Adventures> prop:creator ?x . ?x onto:notableWork ?uri . } | Orange(huggingface) |
To what other locations does the airlines have flights, who also fly to Birmingham? | 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/Birmingham_Airport> . ?x prop:destinations ?uri . ?... | Orange(huggingface) |
How many people are in the band with Juelz Santana? | 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:currentMembers <http://dbpedia.org/resource/Juelz_Santana> . ?x onto:bandMember ?uri . ... | Orange(huggingface) |
What is the layout of the automobiles designed by Olivier Boulay? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:designer <http://dbpedia.org/resource/Olivier_Boulay> . ?x onto:layout ?uri . ?x rdf:type onto... | Orange(huggingface) |
Name the products of Den norske Bank? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Den_norske_Bank prop:products ?uri } | Orange(huggingface) |
How many other battles have the military person fought whose one of the battles is World War II ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/World_War_II> . ?x prop:battles ?uri } | Orange(huggingface) |
Name the country with currency as Aureus ? | 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:currency <http://dbpedia.org/resource/Aureus> . ?uri rdf:type onto:Country} | Orange(huggingface) |
Who developed games based on the Cars series? | 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/Cars_(film)> . ?x onto:developer ?uri . ?x rdf:type onto:V... | Orange(huggingface) |
For a position in which institution were both Jack Ryan and Robert sarvis both appointed? | 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/Jack_Ryan_(politician)> onto:nominee ?uri. <http://dbpedia.org/resource/Robert_Sarvis> onto:nominee ?uri . ?uri rdf:t... | Orange(huggingface) |
Which series was written by Eric Jendresen and John Orloff? | 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/Erik_Jendresen> . ?uri prop:writer <http://dbpedia.org/r... | Orange(huggingface) |
Who is the developer of the software which serves the platform for King's Quest VI? | 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/King's_Quest_VI> onto:computingPlatform ?x . ?x prop:developer ?uri . ?x ... | Orange(huggingface) |
Name the TV show whose network is NBC and is the subsequent work of Fraiser? | 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/NBC> . ?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri rdf:type onto:Televisio... | Orange(huggingface) |
Joe Hahn is the member of what band? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers <http://dbpedia.org/resource/Joe_Hahn> . ?uri rdf:type onto:Band} | Orange(huggingface) |
Where was founded the trade union with whom Amalgamated Clothing Workers of America is affiliated? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Amalgamated_Clothing_Workers_of_America onto:affiliation ?x . ?x prop:founded ?uri . } | Orange(huggingface) |
Who studied at Harvard-Westlake School and has Henry E. Catto, Jr. as predecessor ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri onto:predecessor <http://dbpedia.org/resource/Henry_E._Catto,_Jr.> . } | Orange(huggingface) |
What sports are played in schools in the capital 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 { ?x prop:region <http://dbpedia.org/resource/Capital_region> . ?x onto:sport ?uri . ?x rdf:type onto:Sc... | Orange(huggingface) |
Ontario's ice hockey players have been a part of which teams? | 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:placeOfBirth <http://dbpedia.org/resource/Ontario> . ?x onto:team ?uri . ?x rdf:type onto:IceH... | Orange(huggingface) |
Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. 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:developer <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri prop:distributor <http:... | Orange(huggingface) |
Name some basketball players who have played for chicago bulls? | 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:team <http://dbpedia.org/resource/Chicago_Bulls> . ?uri rdf:type onto:BasketballPlayer} | Orange(huggingface) |
List all the narrators of the albums which had Alan Barzman as one of the narrator ? | 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:narrated <http://dbpedia.org/resource/Alan_Barzman> . ?x prop:narrated ?uri . ?x rdf:type onto... | Orange(huggingface) |
Who is the author of Karakuri Dji Ultimo? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Karakuri_Dôji_Ultimo prop:author ?uri } | Orange(huggingface) |
Who made the singles on the famous album Aida? | 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:album <http://dbpedia.org/resource/Elton_John_and_Tim_Rice's_Aida> . ?x onto:musicalArtist ?uri . ?x rdf:type onto:Single} | Orange(huggingface) |
In how many places were the albums of King Crimson recorded? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist <http://dbpedia.org/resource/King_Crimson> . ?x onto:recordedIn ?uri . } | Orange(huggingface) |
List the home stadiums of the teams in the Russian Premier League? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:league res:2011–12_Russian_Premier_League . ?x onto:homeStadium ?uri . } | Orange(huggingface) |
Which place is Penobscot Island Air founded and is also the birthplace of Ellei Johndro? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Penobscot_Island_Air prop:founded ?uri. res:Ellei_Johndro onto:birthPlace ?uri} | Orange(huggingface) |
What are some devices whose manufacturers are in taiwan? | 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:locationCountry <http://dbpedia.org/resource/Taiwan> . ?uri onto:manufacturer ?x . ?uri rdf:ty... | Orange(huggingface) |
Give me the count of all people who ascended a peak in California? | 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/California> . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person} | Orange(huggingface) |
How many people have written stuff broadcasted on the Tokyo Broadcasting System? | 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:network <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?x prop:writer ?uri .... | Orange(huggingface) |
What is the area of the broadcast network which has the affiliation with 9TV? | 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/9TV> prop:affiliation ?x . ?x prop:area ?uri . ?x rdf:type onto:Broadcast... | Orange(huggingface) |
What is the basketball team whose President's college is Brockport Golden Eagles? | 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:college <http://dbpedia.org/resource/Brockport_Golden_Eagles> . ?uri prop:president ?x . ?uri ... | Orange(huggingface) |
Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_Madison> onto:relation ?uri. <http://dbpedia.org/resource/Levi_Lincoln,_Sr.> prop:successor ?uri} | Orange(huggingface) |
Where are the philosophers from, whose main work is on the matter of feminism in Canada? | 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:mainInterest <http://dbpedia.org/resource/Feminism_in_Canada> . ?x prop:region ?uri . ?x rdf:t... | Orange(huggingface) |
How many religions are followed by the group whose architectural style can be seen on Sanggar Agung? | 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/Sanggar_Agung> prop:architecturalStyle ?x . ?x onto:religion ?uri ... | Orange(huggingface) |
Is Philosophy the academic discipline of Think (journal)? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Think_(journal)> onto:academicDiscipline <http://dbpedia.org/resource/Philosophy> } | Orange(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.