question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who all have been judges on CTV Network's shows?
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:network <http://dbpedia.org/resource/CTV_Television_Network> . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}
julipc-p(huggingface)
How many have former teams as Indianapolis Colts and Carolina Panthers?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:formerTeam <http://dbpedia.org/resource/Indianapolis_Colts> . ?uri onto:formerTeam <http://dbpedia.org/resource/Carolina_Panthers>}
julipc-p(huggingface)
What are some movies whose distributer's CEO is Ted Hartley?
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:keyPeople <http://dbpedia.org/resource/Ted_Hartley> . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}
julipc-p(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 }
julipc-p(huggingface)
Who was the editor of the newspaper owned by the the UK government?
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:owners <http://dbpedia.org/resource/Government_of_the_United_Kingdom> . ?x prop:editor ?uri . ?x rdf:type onto:Newspaper}
julipc-p(huggingface)
List the Stanley Kubrick's movies which has music by Laurie Johnson ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri prop:music <http://dbpedia.org/resource/Laurie_Johnson> . ?uri rdf:type on...
julipc-p(huggingface)
What are the type of Greenup County High School?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Greenup_County_High_School prop:type ?uri }
julipc-p(huggingface)
Where does the road starting from Madison, Wisconsin end?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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}
julipc-p(huggingface)
What is sovereignity of the successor of Mr. George Robert Andrews ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:George_Roberts_Andrews prop:successor ?x . ?x onto:country ?uri . }
julipc-p(huggingface)
Colin Powell was the commander of which military conflict ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:commander <http://dbpedia.org/resource/Colin_Powell> . ?uri rdf:type onto:MilitaryConflict}
julipc-p(huggingface)
What is the label of Next Thing ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Next_Thing onto:recordLabel ?uri }
julipc-p(huggingface)
List down the schools whose mascot's order is Even-toed ungulate?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:order <http://dbpedia.org/resource/Even-toed_ungulate> . ?uri prop:mascot ?x . }
julipc-p(huggingface)
Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?
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:products <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . ?uri onto:keyPerson <http://dbpedia.org/resource/Raymond_Conner> ...
julipc-p(huggingface)
List the relatives of the governor of Gabriel Slaughter?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gabriel_Slaughter onto:governor ?x . ?x onto:relation ?uri . }
julipc-p(huggingface)
How many corporations were founded in Texas?
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:foundationPlace <http://dbpedia.org/resource/Texas> . ?uri rdf:type onto:Company}
julipc-p(huggingface)
What is the style of architecture of Shaheed Minar, Kolkata ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shaheed_Minar,_Kolkata> onto:architecturalStyle ?uri }
julipc-p(huggingface)
Which developer of Go was also the predecssor of X compnay ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Go_(programming_language)> onto:developer ?uri. <http://dbpedia.org/resource/X_(company)> prop:predecessor ?uri}
julipc-p(huggingface)
List all the houses of United States Congress ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:United_States_Congress prop:houses ?uri }
julipc-p(huggingface)
What companies are located in toronto?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:locationCity <http://dbpedia.org/resource/Toronto> . ?uri rdf:type onto:Company}
julipc-p(huggingface)
Where does the network cofounded by Seewoosagur Ramgoolam air its shows?
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:founder <http://dbpedia.org/resource/Seewoosagur_Ramgoolam> . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}
julipc-p(huggingface)
Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software ?
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:manufacturer <http://dbpedia.org/resource/Foxconn> . ?uri prop:os <http://dbpedia.org/resource/PlayStation_3_system_software> . ?uri rdf...
julipc-p(huggingface)
Which teams participate in the football seasons headed by Patricia Amorim?
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:chairman <http://dbpedia.org/resource/Patrícia_Amorim> . ?x prop:name ?uri . ?x rdf:type onto:SportsSeason}
julipc-p(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 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:type onto:Stadium}
julipc-p(huggingface)
who operates the south side elevated railroad?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri }
julipc-p(huggingface)
Name few companies founded in Texas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace <http://dbpedia.org/resource/Texas> . ?uri rdf:type onto:Company}
julipc-p(huggingface)
In which timezone does Khok Kwang lie?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Khok_Kwang onto:timeZone ?uri }
julipc-p(huggingface)
Who directed the albums recorded in Anaheim?
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:recordedIn <http://dbpedia.org/resource/Anaheim,_California> . ?x prop:director ?uri . ?x rdf:type onto:Album}
julipc-p(huggingface)
How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:training <http://dbpedia.org/resource/University_of_Melbourne_Faculty_of_VCA_and_MCM> . ?x onto:award ?uri . }
julipc-p(huggingface)
What is the result of the GazaIsrael conflict is also the place of the Qaqun?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Gaza–Israel_conflict prop:result ?uri. res:Qaqun prop:place ?uri}
julipc-p(huggingface)
To which military division does Clark Daniel Stearns belong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Clark_Daniel_Stearns onto:militaryBranch ?uri }
julipc-p(huggingface)
Who are the opponents of Gervase Helwys?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gervase_Helwys onto:opponent ?uri }
julipc-p(huggingface)
Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?
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:discoverer <http://dbpedia.org/resource/Johann_Gottfried_Galle> . ?uri onto:discoverer <http://dbpedia.org/resource/Urbain_Le_Verrier> ....
julipc-p(huggingface)
Which awards have been given to immunologists?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:fields res:Immunology . ?x onto:award ?uri . }
julipc-p(huggingface)
What are the mountains in the Sequoia National Park?
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/Sequoia_National_Park> . ?uri rdf:type onto:Mountain}
julipc-p(huggingface)
What is the alma mater of Alvin Bell and Charles Plosser?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Alvin_Bell onto:college ?uri. res:Charles_Plosser prop:almaMater ?uri}
julipc-p(huggingface)
Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Skeleton_Dance> onto:animator ?uri. <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri}
julipc-p(huggingface)
From where did Ben Wilson (American football) do his highscool?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ben_Wilson_(American_football)> onto:highschool ?uri }
julipc-p(huggingface)
Name some books by Spanish speaking authors.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:language res:Spanish_language . ?uri prop:author ?x . }
julipc-p(huggingface)
How many famous people are born in Long Island?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:birthPlace <http://dbpedia.org/resource/Long_Island> . }
julipc-p(huggingface)
Name some sports played in institutions of Maharashtra?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:state res:Maharashtra . ?x onto:sport ?uri . }
julipc-p(huggingface)
How many other genere are there of the radio stations whose one of the genre is Classic rock ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:programmeFormat <http://dbpedia.org/resource/Classic_rock> . ?x onto:programmeFormat ?uri }
julipc-p(huggingface)
Where did Allama Matthews study?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Allama_Matthews onto:college ?uri }
julipc-p(huggingface)
What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Funny_Face_(comedian)> prop:nationality ?uri. <http://dbpedia.org/resource/Georgina_Theodora_Wood> onto:nationality ?uri}
julipc-p(huggingface)
What shows are aired on sister channels of BBC Parliaments
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:sisterNames <http://dbpedia.org/resource/BBC_Parliament> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
How many veterans are buried in the US?
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:restingPlace <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:MilitaryPerson}
julipc-p(huggingface)
name the Glover's distributer ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Glover_(video_game)> onto:distributor ?uri }
julipc-p(huggingface)
Whichi office of Walter Evnas Edge is also the part of Atlantic seaboard fall lines ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Atlantic_Seaboard_fall_line onto:part ?uri. res:Walter_Evans_Edge prop:office ?uri}
julipc-p(huggingface)
What are the television shows whose network is Prime Time Entertainment Network?
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:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
To which company is the service "Nintendo eShop" associated with?
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:services <http://dbpedia.org/resource/Nintendo_eShop> . ?uri rdf:type onto:Company}
julipc-p(huggingface)
Name the famous employee of open society foundations ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:employer res:Open_Society_Foundations . }
julipc-p(huggingface)
List the movies whose music composer is often associated with Jon and Vangelis.
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:associatedActs <http://dbpedia.org/resource/Jon_and_Vangelis> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
who is the governer of New Castile?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:order res:Governorate_of_New_Castile }
julipc-p(huggingface)
How many teams have someone playing at the defenceman position?
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:position <http://dbpedia.org/resource/Defenceman> . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}
julipc-p(huggingface)
List all the teams which have someone who played their first game for the Yankees?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:debutteam res:New_York_Yankees . ?x onto:team ?uri . }
julipc-p(huggingface)
Cricket is played by which countries' citizens?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Cricket . ?x onto:stateOfOrigin ?uri . }
julipc-p(huggingface)
Which religion is followed by the PM who was served by Chea Sim?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chea_Sim prop:primeminister ?x . ?x onto:religion ?uri . }
julipc-p(huggingface)
Name some shows similar to the one whose theme song is made by Murray Gold.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer <http://dbpedia.org/resource/Murray_Gold> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What is the constituency of the people who died in Lampedusa?
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:deathPlace <http://dbpedia.org/resource/Lampedusa> . ?x prop:constituency ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Who are the relatives of the character after which Quagmire's Quagmire was made?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork <http://dbpedia.org/resource/Quagmire's_Quagmire> . ?uri onto:relative ?x . }
julipc-p(huggingface)
Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish 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:1997_Canadian_Grand_Prix prop:poleDriver ?uri. res:1994_Spanish_Grand_Prix onto:poleDriver ?uri}
julipc-p(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 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/resource/Roger_Barton_(film_editor)> . ?uri r...
julipc-p(huggingface)
Which band was left by Kevin Jonas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember <http://dbpedia.org/resource/Kevin_Jonas> . ?uri rdf:type onto:Band}
julipc-p(huggingface)
What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_1956_Summer_Olympics_–_Men's_rings> onto:silverMedalist ?x . ?x prop:placeOfDeath ?uri . }
julipc-p(huggingface)
Name the narrators of the album which has been narrated by Alan Thicke ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:narrated res:Alan_Thicke . ?x prop:narrated ?uri . }
julipc-p(huggingface)
Whose children died in North Bend, Ohio?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/North_Bend,_Ohio> . ?uri onto:child ?x . }
julipc-p(huggingface)
Name the presenter of Shirley Temple's Storybook ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shirley_Temple's_Storybook> prop:presenter ?uri }
julipc-p(huggingface)
What is the place of birth of the stars of Auto Shankar ?
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 . }
julipc-p(huggingface)
Name the television show created by CE Webber and also has actor named Companion?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:starring <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri onto:creator <http://dbpedia.org/resource/C._E._Webber> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Give me the characters who last appeared in Star Wars Episode 3
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:last res:Star_Wars:_Episode_III_–_Revenge_of_the_Sith }
julipc-p(huggingface)
How many awards have been awarded to people who are buried in Glendale, California?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace <http://dbpedia.org/resource/Glendale,_California> . ?x onto:award ?uri . }
julipc-p(huggingface)
Count the number of tenants whose one of the tenant is Toronto Phantoms ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant <http://dbpedia.org/resource/Toronto_Phantoms> . ?x onto:tenant ?uri }
julipc-p(huggingface)
In which war did the units garrisoned at Turin fight?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:garrison res:Turin . ?x onto:battle ?uri . }
julipc-p(huggingface)
Which software uses GTK+ as programming language?
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:programmingLanguage <http://dbpedia.org/resource/GTK+> . ?uri rdf:type onto:Software}
julipc-p(huggingface)
Producers of what have died in Mississippi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Mississippi . ?uri onto:producer ?x . }
julipc-p(huggingface)
Where is the birthplace of Ferrel Harris ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri }
julipc-p(huggingface)
Which sports exist in the universities whose president is Emanuel de Guzman?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:president <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x onto:sport ?uri . ?x rdf:type onto:University}
julipc-p(huggingface)
How many scientists are known for the Manhatten Project?
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:knownFor <http://dbpedia.org/resource/Manhattan_Project> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Who designed the stadiums which have been rented by Oakland athletics?
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/Oakland_Athletics> . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}
julipc-p(huggingface)
Who were the producers of the tenderfoot?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Tenderfoot_(miniseries)> onto:producer ?uri }
julipc-p(huggingface)
Name the route start of Saint Petersburg Moscow Railway ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Saint_Petersburg_–_Moscow_Railway onto:routeStart ?uri }
julipc-p(huggingface)
Name the sport league of Hampton Roads Rhinos ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Hampton_Roads_Rhinos prop:league ?uri }
julipc-p(huggingface)
How many Thesaban towns are there?
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:settlementType <http://dbpedia.org/resource/Thesaban> . ?uri rdf:type onto:Town}
julipc-p(huggingface)
Name all the broadcast area of the TV stations which has Rodrigues as one of the broadcast area ?
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:broadcastArea <http://dbpedia.org/resource/Rodrigues> . ?x prop:broadcastArea ?uri . ?x rdf:type onto:TelevisionStation}
julipc-p(huggingface)
Which share holder of outlook is also the content license of the MSX Basics ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Outlook_on_the_web prop:owner ?uri}
julipc-p(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 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 . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ?
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:predecessor <http://dbpedia.org/resource/Mark_Latham> . ?uri onto:partner <http://dbpedia.org/resource/Tim_Mathieson> . ?uri rdf:type on...
julipc-p(huggingface)
Which newspaper owned by Schibsted is published in Swedish ?
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:language <http://dbpedia.org/resource/Swedish_language> . ?uri prop:owners <http://dbpedia.org/resource/Schibsted> . ?uri rdf:type onto:...
julipc-p(huggingface)
How many other people are in a band with Robert de Niro?
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:currentMembers <http://dbpedia.org/resource/Robert_De_Niro> . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Which river goes through cohoes, NY
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cohoes,_New_York> onto:river ?uri }
julipc-p(huggingface)
List the software which uses Microsoft Windows as their operating system ?
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 rdf:type onto:Software}
julipc-p(huggingface)
What all has been created by Jerry Siegel?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:creators res:Jerry_Siegel }
julipc-p(huggingface)
What is the common party of the Manthena Venkata Raju and B. Shiva Rao?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Manthena_Venkata_Raju onto:party ?uri. res:B._Shiva_Rao prop:party ?uri}
julipc-p(huggingface)
List the country of Tokaj wine region ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tokaj_wine_region prop:country ?uri }
julipc-p(huggingface)
Who all were venerated in Islam?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn <http://dbpedia.org/resource/Islam> . }
julipc-p(huggingface)
Which country has outflow of Lake Uniamsi and inflows of the Cahora Bassa?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri. res:Cahora_Bassa prop:inflow ?uri}
julipc-p(huggingface)
How many items belong to the Science Fiction genre?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:genre <http://dbpedia.org/resource/Science_fiction> . }
julipc-p(huggingface)
For what is Abhijit Kunte known ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri }
julipc-p(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 }
julipc-p(huggingface)
How many shows belong to the networks one of whose sister station is BBC News?
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:sisterNames <http://dbpedia.org/resource/BBC_News_(TV_channel)> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Which spouse of Ptolemy XIV had a mother named Ptolemy XII auletes ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:parent res:Ptolemy_XII_Auletes . ?uri onto:spouse res:Ptolemy_XIV_of_Egypt . }
julipc-p(huggingface)