question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
How many games have a composer who worked for the Creatures?
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 onto:occupation <http://dbpedia.org/resource/Creatures_(company)> . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}
julipc-p(huggingface)
Which state is the birth location of Ann Monroe Gilchrist Strong?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ann_Monroe_Gilchrist_Strong onto:birthPlace ?x . ?x onto:country ?uri . }
julipc-p(huggingface)
Which university's graduates have worked in the Quartermaster corps?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit <http://dbpedia.org/resource/Quartermaster_Corps_(United_States_Army)> . ?x onto:almaMater ?uri . }
julipc-p(huggingface)
How many people have voiced characters sculpted by Clamp?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creator <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x onto:voice ?uri . }
julipc-p(huggingface)
Trainees at the national film school of Lodz have received what awards?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:training res:National_Film_School_in_Łódź . ?x onto:award ?uri . }
julipc-p(huggingface)
Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?
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/Mickey's_Mellerdrammer> prop:cinematography ?uri}
julipc-p(huggingface)
Who is the scientist whose academic advisor is Franz Brentano?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor <http://dbpedia.org/resource/Franz_Brentano> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Who was the animator of both Tommy Tucker's Tooth and Skeleton Dance?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri. <http://dbpedia.org/resource/The_Skeleton_Dance> onto:animator ?uri}
julipc-p(huggingface)
In how many different people are alumini of the University of Oxford working?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:almaMater <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x onto:field ?uri . }
julipc-p(huggingface)
Who is the developer of Montecito Inn ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Montecito_Inn prop:developer ?uri }
julipc-p(huggingface)
Where did Paul Jones do his highschool?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Jones_(American_football)> prop:highschool ?uri }
julipc-p(huggingface)
What are the shows whose creator has worked as a screenwriter?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:occupation <http://dbpedia.org/resource/Screenwriting> . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
To which students did Ernest Rutherford advised to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:Ernest_Rutherford . }
julipc-p(huggingface)
Which institution of the Alton Ochsner is the alma mater of the Michael Hahn ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri. res:Michael_Hahn onto:almaMater ?uri}
julipc-p(huggingface)
In how many places was the album of King Crimson recorded?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist <http://dbpedia.org/resource/King_Crimson> . ?x onto:recordedIn ?uri . }
julipc-p(huggingface)
Which television show's company is Paramount Television and is located in Boston?
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:company <http://dbpedia.org/resource/Paramount_Television> . ?uri onto:location <http://dbpedia.org/resource/Boston> . ?uri rdf:type ont...
julipc-p(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 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}
julipc-p(huggingface)
Which nickname of Lyons Township JHigh school is also the mascot of Galatasaray Handball Team ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri. res:Lyons_Township_High_School prop:nickname ?uri}
julipc-p(huggingface)
What are the movies whose cast members are signed up with Point Blank Records?
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:label <http://dbpedia.org/resource/Point_Blank_Records> . ?uri prop:starring ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
What is the Team Name of the Cristo Rey Jesuit High School (Chicago) and is also the nickname of the Lyons Township High School ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cristo_Rey_Jesuit_High_School_(Chicago)> prop:teamName ?uri. <http://dbpedia.org/resource/Lyons_Township_High_School> prop:nickname ?uri}
julipc-p(huggingface)
Where is Dofinivka Estuary located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Dofinivka_Estuary prop:location ?uri }
julipc-p(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 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 ?uri . ?x rdf:type onto:Island}
julipc-p(huggingface)
Name the televesion show which has artist named Christopher Franke ?
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:artist <http://dbpedia.org/resource/Christopher_Franke> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
name the races where bobby beasley took part ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bobby_Beasley onto:race ?uri }
julipc-p(huggingface)
Which institution of the Alton Ochsner is also the alma mater of John Michael Seabright ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri. res:John_Michael_Seabright onto:almaMater ?uri}
julipc-p(huggingface)
what mountains are in sierra nevada?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . }
julipc-p(huggingface)
Who acted in the movies whose music is composed by Walter Scharf?
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:musicComposer <http://dbpedia.org/resource/Walter_Scharf> . ?x prop:artist ?uri . ?x rdf:type onto:Film}
julipc-p(huggingface)
What softwares were created by Apple Productivity Experience Group ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri }
julipc-p(huggingface)
Who is the producer of the album, after which A Nice pair was released ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:A_Nice_Pair onto:previousWork ?x . ?x prop:producer ?uri . }
julipc-p(huggingface)
Where can i find teams whose coach has been Rodney Eade.
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:coach <http://dbpedia.org/resource/Rodney_Eade> . ?x prop:location ?uri . ?x rdf:type onto:SportsTeam}
julipc-p(huggingface)
List all that flows into the north sea?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:North_Sea prop:inflow ?uri }
julipc-p(huggingface)
How many head of agencies were there in Nazi Germany?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:jurisdiction <http://dbpedia.org/resource/Nazi_Germany> . ?x onto:leader ?uri . }
julipc-p(huggingface)
List all the notable work of the screen writer who produced Frasier ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:notableWork <http://dbpedia.org/resource/Frasier> . ?x onto:notableWork ?uri . ?x rdf:type onto:ScreenWriter}
julipc-p(huggingface)
Who employed the person famous for the Boeing fa18ef Super Hornet?
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:knownFor <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . ?x prop:employer ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
In which monarch did Li Si succeed someone?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Li_Si . ?x onto:monarch ?uri . }
julipc-p(huggingface)
List the awards given to the relatives of Gregorios Bernardakis.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gregorios_Bernardakis onto:relative ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
What politician's partner is Diana Taylor ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:partner <http://dbpedia.org/resource/Diana_Taylor_(superintendent)> . ?uri rdf:type onto:Politician}
julipc-p(huggingface)
Which fields are covered by academic journals in the US?
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:country <http://dbpedia.org/resource/United_States> . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}
julipc-p(huggingface)
What is the draft team of Bob MacMillan ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri }
julipc-p(huggingface)
Which football players have Newell's Old Boys as youthclub?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs <http://dbpedia.org/resource/Newell's_Old_Boys> }
julipc-p(huggingface)
What are the teams for which Wilfred McDonald played for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Wilfred_McDonald prop:playedFor ?uri }
julipc-p(huggingface)
Who is the Artist of the singles whose film genre is Country music ?
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:genre <http://dbpedia.org/resource/Country_music> . ?x prop:artist ?uri . ?x rdf:type onto:Single}
julipc-p(huggingface)
Count all those whose youthclub performed at the 14-15 La Liga?
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 onto:season <http://dbpedia.org/resource/2014–15_La_Liga> . ?uri prop:youthclubs ?x . ?uri rdf:type onto:Athlete}
julipc-p(huggingface)
How many cities are around the sea which flows into the Atlantic?
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 onto:inflow <http://dbpedia.org/resource/Atlantic_Ocean> . ?x prop:cities ?uri . ?uri rdf:type onto:City}
julipc-p(huggingface)
Who all are starring in the movies where director of photography is John Derek ?
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:cinematography <http://dbpedia.org/resource/John_Derek> . ?x prop:starring ?uri . ?x rdf:type onto:Film}
julipc-p(huggingface)
List the import people of Maryland Jockey Club ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Maryland_Jockey_Club prop:keyPeople ?uri }
julipc-p(huggingface)
What is the total number of companies who use a language designed by Bjarne Stroustrup?
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:designer <http://dbpedia.org/resource/Bjarne_Stroustrup> . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Company}
julipc-p(huggingface)
Who does Cam PLante plays for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri }
julipc-p(huggingface)
What famous work is derived from the one whose lyrics are written by Inma Gonzales?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:lyrics res:Inma_González . ?x onto:basedOn ?uri . }
julipc-p(huggingface)
How many awards have been given to the ones who died of lung cancer?
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:deathCause <http://dbpedia.org/resource/Lung_cancer> . ?x onto:award ?uri . ?uri rdf:type onto:Award}
julipc-p(huggingface)
Where the children of Ashot Grashi employed at?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Ashot_Grashi . ?x onto:occupation ?uri . }
julipc-p(huggingface)
Who holds shares in something famous for the Seven Spring Mountain Resort?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:knownFor res:Seven_Springs_Mountain_Resort . ?uri prop:owner ?x . }
julipc-p(huggingface)
Which executive producer of Into the Dalek also produced Wizards vs Aliens ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Into_the_Dalek prop:executiveProducer ?uri. res:Wizards_vs_Aliens onto:producer ?uri}
julipc-p(huggingface)
Who is the office holder whose deputy was Andrew Peacock and predecessor was Alexander Downer?
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:deputy <http://dbpedia.org/resource/Andrew_Peacock> . ?uri onto:predecessor <http://dbpedia.org/resource/Alexander_Downer> . ?uri rdf:ty...
julipc-p(huggingface)
Which famous philosopher died on island Euboea?
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:deathDate <http://dbpedia.org/resource/Euboea> . ?uri rdf:type onto:Philosopher}
julipc-p(huggingface)
What is the religion of the political party which is an international party of Hamas?
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/Hamas> prop:international ?x . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}
julipc-p(huggingface)
How many honorary title are there of the scientists who has Australian of the Year award ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award <http://dbpedia.org/resource/Australian_of_the_Year> . ?x onto:award ?uri }
julipc-p(huggingface)
Name some TV shows whose theme is made by a band associated with Buckethead?
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:associatedBand <http://dbpedia.org/resource/Buckethead> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What is the alma mater of K. Terry Dornbush ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:K._Terry_Dornbush prop:almaMater ?uri }
julipc-p(huggingface)
What is the birthplace of the office holder who is the predecessor of Brian Peddle ?
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/Brian_Peddle> prop:predecessor ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:OfficeHolder}
julipc-p(huggingface)
What is the river which comes from Southend-on-Sea mountain?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain <http://dbpedia.org/resource/Southend-on-Sea> . ?uri rdf:type onto:River}
julipc-p(huggingface)
What is the birth location of the advisor of Richard Hofstadter ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Richard_Hofstadter prop:doctoralAdvisor ?x . ?x onto:birthPlace ?uri . }
julipc-p(huggingface)
Name the college of the Allama Matthews which also has affiliation with Monroe Carell Jr. Children's Hospital at Vanderbilt
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allama_Matthews> onto:college ?uri. <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> prop:affiliation ?uri}
julipc-p(huggingface)
What is the successor of the governors whose child is Levi Lincoln, Jr.?
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:children <http://dbpedia.org/resource/Levi_Lincoln,_Jr.> . ?x prop:successor ?uri . ?x rdf:type onto:Governor}
julipc-p(huggingface)
Who is the prime minister that Michael Jeffery served?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Michael_Jeffery prop:primeminister ?uri }
julipc-p(huggingface)
How many people are known for Dragons' Den?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:knownFor <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }
julipc-p(huggingface)
What is pitro Gruszka hometown ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Piotr_Gruszka prop:hometown ?uri }
julipc-p(huggingface)
Whihc place of birth of the Union State is also the largest city of Union Staete ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Nina_Vislova prop:placeOfBirth ?uri}
julipc-p(huggingface)
How many different writers have written for Jump Square?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine <http://dbpedia.org/resource/Jump_Square> . ?x prop:author ?uri . }
julipc-p(huggingface)
Who is the employer of Ralph flanders ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri }
julipc-p(huggingface)
List the awards given to the important people of Aardman Animations?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Aardman_Animations onto:keyPerson ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?
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:artist <http://dbpedia.org/resource/Christopher_Franke> . ?uri onto:developer <http://dbpedia.org/resource/J._Michael_Straczynski> . ?ur...
julipc-p(huggingface)
Name the members of European Go Federation?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:European_Go_Federation prop:membership ?uri }
julipc-p(huggingface)
In which sitcom did Jeff Conaway acted and had TNT as its 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/TNT_(TV_channel)> . ?uri onto:starring <http://dbpedia.org/resource/Jeff_Conaway> . ?uri rdf:type o...
julipc-p(huggingface)
Where are the tombs of alumni of ational academy museum and school?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:training res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }
julipc-p(huggingface)
What is the order of George Frisbie Hoar?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:George_Frisbie_Hoar prop:order ?uri }
julipc-p(huggingface)
Among the universities having Gyrfalcon as mascot which have Michelle D. Johnson as superintendent ?
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:superintendent <http://dbpedia.org/resource/Michelle_D._Johnson> . ?uri prop:mascot <http://dbpedia.org/resource/Gyrfalcon> . ?uri rdf:t...
julipc-p(huggingface)
Name the show whose theme composing band previously also had Bryan Mantia?
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/Bryan_Mantia> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
List the television shows whose Composers are associated with Strontium 90 ?
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:associatedBand <http://dbpedia.org/resource/Strontium_90_(band)> . ?uri prop:composer ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Name the band atleast one of whose members is famous for playing the Fender Stratocaster?
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:notableInstruments <http://dbpedia.org/resource/Fender_Stratocaster> . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}
julipc-p(huggingface)
Count the participants of the NBA.
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:league <http://dbpedia.org/resource/National_Basketball_Association> . }
julipc-p(huggingface)
Who has stock in the railway lines managed by Norfolk Southern Railway?
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:system <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}
julipc-p(huggingface)
How many writers speak a language belonging to the Germanic kind of languages?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily <http://dbpedia.org/resource/Germanic_languages> . ?uri prop:language ?x . ?uri rdf:type onto:Writer}
julipc-p(huggingface)
Enumerate the cars related to the ones assembled in Toluca?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly <http://dbpedia.org/resource/Toluca> . ?x prop:related ?uri . }
julipc-p(huggingface)
Where is the grave of Ivan III of Russia ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ivan_III_of_Russia prop:placeOfBurial ?uri }
julipc-p(huggingface)
Name the capital of Barony of Caux ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Barony_of_Caux onto:capital ?uri }
julipc-p(huggingface)
Name the basketball players drafted by Los Angeles Clippers ?
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:draftTeam <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri rdf:type onto:BasketballPlayer}
julipc-p(huggingface)
Count the number of other product of the banks whose one of the product is Wealth management ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:product <http://dbpedia.org/resource/Wealth_management> . ?x onto:product ?uri }
julipc-p(huggingface)
Which scientist is known for writing Philosophi Naturalis Principia Mathematica?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:knownFor res:Philosophiæ_Naturalis_Principia_Mathematica }
julipc-p(huggingface)
Which planet was first discovered by Johann Gottfried Galle?
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 rdf:type onto:Planet}
julipc-p(huggingface)
What are some organizations in Auckland created to do?
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:location <http://dbpedia.org/resource/Auckland> . ?x prop:purpose ?uri . ?x rdf:type onto:Organisation}
julipc-p(huggingface)
Under which president was timothy l. woodruff a lieutenant?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:lieutenant res:Timothy_L._Woodruff }
julipc-p(huggingface)
How many have been venerateds in Islam and Judaism?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:veneratedIn <http://dbpedia.org/resource/Islam> . ?uri onto:veneratedIn <http://dbpedia.org/resource/Judaism>}
julipc-p(huggingface)
Which training center of William Anthony has also alumni named Philip W Pillsbury ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> prop:training ?uri. <http://dbpedia.org/resource/Philip_W._Pillsbury> prop:education ?uri}
julipc-p(huggingface)
What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/65th_(2nd_Yorkshire,_North_Riding)_Regiment_of_Foot> prop:battleHonours ?x . ?x onto:largestCity ?uri . }
julipc-p(huggingface)
What awards have been given to people schooled in the Everton park state high?
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:education <http://dbpedia.org/resource/Everton_Park_State_High_School> . ?x prop:awards ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
List the authors of the musicals whose songwriter is Richard M. Sherman.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:musicBy <http://dbpedia.org/resource/Richard_M._Sherman> . ?x onto:author ?uri . ?x rdf:type onto:Musical}
julipc-p(huggingface)
Who founded the sister stations of Discovery Communications?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames res:Discovery_Communications . ?x prop:founder ?uri . }
julipc-p(huggingface)
Rivers which end in Arkansas go through which cities?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:mouthMountain <http://dbpedia.org/resource/Arkansas> . ?x onto:city ?uri . ?x rdf:type onto:River}
julipc-p(huggingface)
Give me some organizations working for Environmentalism
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:purpose <http://dbpedia.org/resource/Environmentalism> . ?uri rdf:type onto:Organisation}
julipc-p(huggingface)