question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
How many food items have an ingredient from the Sapindales family? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
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} | julipc-p(huggingface) |
Which district of Thorington railway station is the location of death of David Lewis (poet) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thorington_railway_station> onto:district ?uri. <http://dbpedia.org/resource/David_Lewis_(poet)> onto:deathPlace ?uri} | julipc-p(huggingface) |
Who was the head coach of Middlesbrough F.C. season 2006-7 also the coach of England national under 21 footbal team ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2006–07_Middlesbrough_F.C._season> onto:manager ?uri. <http://dbpedia.org/resource/England_national_under-21_football_team> prop:coach ?uri} | julipc-p(huggingface) |
Who designed the bridge over the Valaichchenai lagoon? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:crosses <http://dbpedia.org/resource/Valaichchenai_Lagoon> . ?x prop:designer ?uri . ?x rdf:type onto:Bridge} | julipc-p(huggingface) |
Where did anton ausserer die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Anton_Ausserer prop:deathPlace ?uri } | julipc-p(huggingface) |
How many teams have used the stadium which hosted the WCW mayhem? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/WCW_Mayhem> prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium} | julipc-p(huggingface) |
List bacterias whose orde is Bacillales and division is Firmicutes? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:order <http://dbpedia.org/resource/Bacillales> . ?uri onto:division <http://dbpedia.org/resource/Firmicutes> . ?uri rdf:type onto:Bacteria} | julipc-p(huggingface) |
Who are in the liang chow club? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:club res:Liang_Chow } | julipc-p(huggingface) |
To which family does korean fox belongs to ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Korean_fox onto:family ?uri } | julipc-p(huggingface) |
What is the alma mater of the person, whose child is Samuel Moreno Rojas? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:children res:Samuel_Moreno_Rojas . ?x prop:almaMater ?uri . } | julipc-p(huggingface) |
Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri onto:mouthPlace <http://dbpedia.org/resource/Southend-on-Sea> . ?uri rdf:type onto:River} | julipc-p(huggingface) |
In how many countries does the Zurich Affoltern am Albis Zug line go? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:line <http://dbpedia.org/resource/Zürich–Affoltern_am_Albis–Zug_railway_line> . ?x onto:country ?uri . ?uri rdf:type onto:Country} | julipc-p(huggingface) |
How many movies did Joel Schumacher direct? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
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} | julipc-p(huggingface) |
In how many places did Julian Leow Beng Kim study? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> prop:almaMater ?uri . ?uri rdf:type onto:University} | julipc-p(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 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} | julipc-p(huggingface) |
Which Stanley Kubrick's movie has music by Laurie Johnson? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri prop:music <http://dbpedia.org/resource/Laurie_Johnson> . ?uri rdf:type on... | julipc-p(huggingface) |
How many movies were directed by the graduate of Burbank High School ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education <http://dbpedia.org/resource/Burbank_High_School_(Burbank,_California)> . ?uri prop:director ?x . ?uri rdf:type onto:Fil... | julipc-p(huggingface) |
What is the type of Vesak ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Vesak onto:type ?uri } | julipc-p(huggingface) |
Who have become famous by movies produced by Laurence Mark? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Laurence_Mark . ?uri onto:knownFor ?x . } | julipc-p(huggingface) |
Count all the scientologists. | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:religion <http://dbpedia.org/resource/Scientology> . } | julipc-p(huggingface) |
Laozi has authored which books ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:author <http://dbpedia.org/resource/Laozi> . ?uri rdf:type onto:Book} | julipc-p(huggingface) |
Name the river whose source location is Nevado Mismi and region is Arequipa Region? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation <http://dbpedia.org/resource/Nevado_Mismi> . ?uri prop:sourceRegion <http://dbpedia.org/resource/Arequipa_Region> . ?uri ... | julipc-p(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 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} | julipc-p(huggingface) |
Where can I find companies which originated in Canada? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/Canada> . ?x prop:locations ?uri . ?x rdf:type onto:Company} | julipc-p(huggingface) |
Name the species of Panthera leo fossilis ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Panthera_leo_fossilis onto:species ?uri } | julipc-p(huggingface) |
What is the nationality of Newin Chidchob ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri } | julipc-p(huggingface) |
List the affiliations of Wikipedia Zero ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Wikipedia_Zero prop:affiliations ?uri } | julipc-p(huggingface) |
What is the route start of Capitol 400 ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Capitol_400 onto:routeStart ?uri } | julipc-p(huggingface) |
Which awards did the parents of Anna Bergman win ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Anna_Bergman onto:parent ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
How many schools have a bison as their mascot? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:mascot <http://dbpedia.org/resource/Bison> . ?uri rdf:type onto:School} | julipc-p(huggingface) |
What river originates in the Connecticut Lakes? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:source <http://dbpedia.org/resource/Connecticut_Lakes> . ?uri rdf:type onto:River} | julipc-p(huggingface) |
List the bacterias whose division is Firmicutes and domain is bacteria? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:division <http://dbpedia.org/resource/Firmicutes> . ?uri prop:domain <http://dbpedia.org/resource/Bacteria> . ?uri rdf:type onto:Bacteri... | julipc-p(huggingface) |
Who is the head coach of 2009-10 Middlesbrough F.C. season ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2009–10_Middlesbrough_F.C._season> onto:manager ?uri } | julipc-p(huggingface) |
Name the battle fought by the people which also fought in Levant ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:battles <http://dbpedia.org/resource/Levant> . ?x prop:battles ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
Which work institutions of the Andrew Schally is the alma mater of the Mara Eugenia Rojas Correa ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:María_Eugenia_Rojas_Correa prop:almaMater ?uri} | julipc-p(huggingface) |
Which politician's constituency is led by the SF Board of Supervisors? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle <http://dbpedia.org/resource/San_Francisco_Board_of_Supervisors> . ?uri prop:constituency ?x . ?uri rdf:type onto:OfficeHolde... | julipc-p(huggingface) |
How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/François-Marie_Le_Marchand_de_Lignery> onto:battle ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryCon... | julipc-p(huggingface) |
What are some people who are on the board of companies founded in NY? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
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_City> . ?uri onto:board ?x . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
Who was the architect of the stadium currently run by the Pittsburgh Pirates? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:operator <http://dbpedia.org/resource/Pittsburgh_Pirates> . ?x prop:architect ?uri . ?x rdf:type onto:Stadium} | julipc-p(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 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 . ?uri rdf:type onto:MusicalArtist} | julipc-p(huggingface) |
What sport activities are available at Polytechnic University of the Philippines Bataan? | 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 } | julipc-p(huggingface) |
In how many places have the companies started in Newcastle worked? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/City_of_Newcastle> . ?x onto:regionServed ?uri . ?uri rdf:type onto:Place} | julipc-p(huggingface) |
What are the musicals of the people died in California? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/California> . ?uri prop:music ?x . ?uri rdf:type onto:Musical} | julipc-p(huggingface) |
What sport has made Eric Schiller famous, and has employed Craig Van Tibury? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Eric_Schiller onto:knownFor ?uri} | julipc-p(huggingface) |
Which pole driver of 1989 Portuguese Grand Prix was also the first driver of 1993 European Grand Prix ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri} | julipc-p(huggingface) |
What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1931_Staten_Island_Stapletons_season> onto:coach ?x . ?x prop:debutteam ?uri . ?x rdf:type onto:GridironFootballPlay... | julipc-p(huggingface) |
Name the alma mater of the scientist famous for Email filtering ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:knownFor <http://dbpedia.org/resource/Email_filtering> . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist} | julipc-p(huggingface) |
Where is the T.I. Ahmadiyya Girls Senior High School? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/T.I._Ahmadiyya_Girls_Senior_High_School,_Asokore> onto:denomination ?uri } | julipc-p(huggingface) |
To what region is Sukhumbhand Paribatra, a leader? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:leaderName <http://dbpedia.org/resource/Sukhumbhand_Paribatra> . ?uri rdf:type onto:Region} | julipc-p(huggingface) |
What are the birth place of the people who are the star of Dhoondte Reh Jaaoge? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dhoondte_Reh_Jaaoge!_(1998_film)> onto:starring ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
Which software uses windows as it's operating system and is written in C++ ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri onto:programmingLanguage <http://dbpedia.org/resource/C++> . ?uri rdf:type onto:Software} | julipc-p(huggingface) |
Which domain's journals did Willard Fiske edit? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:editor <http://dbpedia.org/resource/Willard_Fiske> . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal} | julipc-p(huggingface) |
What is the religion of the person who is in the cast of Master's Sun> ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Master's_Sun> onto:starring ?x . ?x prop:religion ?uri . ?x rdf:type onto:Person} | julipc-p(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 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 ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
How many maintainers are there of the bridges that can carry motor vehicles over them? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries <http://dbpedia.org/resource/Motor_vehicle> . ?x onto:maintainedBy ?uri . } | julipc-p(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 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} | julipc-p(huggingface) |
Give the distinct number of other party of the people which have one of the party as Janata Party ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty <http://dbpedia.org/resource/Janata_Party> . ?x onto:otherParty ?uri } | julipc-p(huggingface) |
List the former partner of the figure skaters whose former choreographer was Igor Shpillband. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer <http://dbpedia.org/resource/Igor_Shpillband> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater} | julipc-p(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 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 onto:Building} | julipc-p(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 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 onto:TelevisionShow} | julipc-p(huggingface) |
Which associate of Thomas bryan Martin is also the president of Carmichael ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Bryan_Martin> onto:associate ?uri. <http://dbpedia.org/resource/William_Carmichael_(diplomat)> prop:president ?uri} | julipc-p(huggingface) |
Which political party got elected in First Legislative Assembly of Uttar Pradesh ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh prop:party ?uri } | julipc-p(huggingface) |
How many organizations own the website to which Jimmy Wales contributes? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author <http://dbpedia.org/resource/Jimmy_Wales> . ?x onto:owner ?uri . ?uri rdf:type onto:Organisation} | julipc-p(huggingface) |
Name the notable commanders of Army Group Oberrhein ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> prop:notableCommanders ?uri } | julipc-p(huggingface) |
Which high school of the Jerry Tagge also was the palce hwer Temptation Waits was recorded ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri. res:Temptation_Waits onto:recordedIn ?uri} | julipc-p(huggingface) |
Name the place of Qaqun ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Qaqun prop:place ?uri } | julipc-p(huggingface) |
What is the deathplace of people who have worked in Ethics? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:mainInterests <http://dbpedia.org/resource/Ethics> . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
List all the nicknames of the city which has Toru 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 . } | julipc-p(huggingface) |
What are the awards won by the film editor of World of Tomorrow ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> onto:editing ?x . ?x onto:award ?uri . } | julipc-p(huggingface) |
Which mountains are contained in Inyo National Forest? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri rdf:type onto:Mountain} | julipc-p(huggingface) |
Whose children are married to Fredric Joliot-Curie? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:spouse <http://dbpedia.org/resource/Frédéric_Joliot-Curie> . ?uri prop:children ?x . } | julipc-p(huggingface) |
Where did the president study, whose VP was Emilio Nez? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident res:Emilio_Núñez . ?x onto:almaMater ?uri . } | julipc-p(huggingface) |
Where are the homestadiums of the seasons chaired by Merritt Paulson? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:chairman <http://dbpedia.org/resource/Merritt_Paulson> . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason} | julipc-p(huggingface) |
What is the architecture of First National Bank and Trust Building (Lima, Ohio) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> onto:architecturalStyle ?uri } | julipc-p(huggingface) |
What are some languages in the italic family of languages? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:languageFamily res:Italic_languages } | julipc-p(huggingface) |
Count all the awards which were presented by something located in California. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter <http://dbpedia.org/resource/California> . ?uri onto:presenter ?x . ?uri rdf:type onto:Award} | julipc-p(huggingface) |
What is the region of the Kim Sawchuk which is also served by the Airtours International Airways ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Kim_Sawchuk prop:region ?uri. res:Airtours_International_Airways prop:destinations ?uri} | julipc-p(huggingface) |
Who all held a position when Gough Whitlam was the prime minister? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:primeMinister res:Gough_Whitlam } | julipc-p(huggingface) |
What are the mascots of the teams participating in the Turkish Handball Super League? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:league <http://dbpedia.org/resource/Turkish_Handball_Super_League> . ?x prop:mascot ?uri . ?x rdf:type onto:SportsTeam} | julipc-p(huggingface) |
Which tenants of the Master Card center is also th draft team of Sam Carrrick | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri. res:Sam_Carrick prop:draftTeam ?uri} | julipc-p(huggingface) |
Who originally wrote the manga which was later illustrated by Tamon Ohta? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:illustrator <http://dbpedia.org/resource/Tamon_Ohta> . ?x prop:author ?uri . ?x rdf:type onto:Manga} | julipc-p(huggingface) |
How many other race are there of the adult (pornographic) actors whose ethnicity is Cherokee ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ethnicity <http://dbpedia.org/resource/Cherokee> . ?x prop:ethnicity ?uri } | julipc-p(huggingface) |
Who maintains the stuff designed by the Brunei government? | 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 res:Politics_of_Brunei . ?x onto:maintainedBy ?uri . } | julipc-p(huggingface) |
Stockholm is the HQ of how many things? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:headquarters <http://dbpedia.org/resource/Stockholm> . } | julipc-p(huggingface) |
What is a salthill? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Salthill onto:type ?uri } | julipc-p(huggingface) |
List all the parents of writers coming from the Great Missenden ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:homeTown <http://dbpedia.org/resource/Great_Missenden> . ?x onto:parent ?uri . ?x rdf:type onto:Writer} | julipc-p(huggingface) |
In how many regions is the Baco Noir made? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> onto:wineRegion ?uri . } | julipc-p(huggingface) |
What is the source country of Water resources managemnt in EL Salvador is also the land of Jos MAra Orellana ? | 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:José_María_Orellana onto:country ?uri} | julipc-p(huggingface) |
Where does the Jerusalem Institute of Justice render their services? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jerusalem_Institute_of_Justice onto:service ?uri } | julipc-p(huggingface) |
What borders siberia? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Siberia onto:border ?uri } | julipc-p(huggingface) |
To which party do the politicians who died in Delhi belong? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath <http://dbpedia.org/resource/Delhi> . ?x prop:party ?uri . ?x rdf:type onto:OfficeHolder} | julipc-p(huggingface) |
Who created the stadiums who have been rented by the Boston Red Sox? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/Boston_Red_Sox> . ?x prop:architect ?uri . ?x rdf:type onto:Stadium} | julipc-p(huggingface) |
What is the region of the successor of Mr. Jerome B. Chaffee ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jerome_B._Chaffee onto:successor ?x . ?x onto:region ?uri . } | julipc-p(huggingface) |
What is the profession of the Chris Myers (New Jersey) which is the governing body of Oahu Railway and Land Company ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chris_Myers_(New_Jersey)> onto:profession ?uri. <http://dbpedia.org/resource/Oahu_Railway_and_Land_Company> prop:governingBody ?uri} | julipc-p(huggingface) |
In which countries were the Russian volleyball team players born? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam <http://dbpedia.org/resource/Russia_women's_national_volleyball_team> . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete... | julipc-p(huggingface) |
Which religion's people are member of BJP? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:party <http://dbpedia.org/resource/Bharatiya_Janata_Party> . ?x onto:religion ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
List down the commanders of Battle of Fort stephenson ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Battle_of_Fort_Stephenson onto:commander ?uri } | julipc-p(huggingface) |
What is the subject of The Prodigal son ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> prop:subject ?uri } | julipc-p(huggingface) |
ARM Architecture acts as a game platform for how many things? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform <http://dbpedia.org/resource/ARM_architecture> . } | julipc-p(huggingface) |
Name the work institutions of Andrew Schally? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri } | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.