question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What are the television shows whose Composer is Stewart Copeland?
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:composer <http://dbpedia.org/resource/Stewart_Copeland> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
List the border of the admin region which shares border with North Korea ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:border <http://dbpedia.org/resource/North_Korea> . ?x onto:border ?uri . ?x rdf:type onto:AdministrativeRegion}
julipc-p(huggingface)
What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri. res:Nathan_Dempsey prop:playedFor ?uri}
julipc-p(huggingface)
Through which important cities the does the river originating from the Duwamish, flow?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:source <http://dbpedia.org/resource/Green_River_(Duwamish_River)> . ?x onto:city ?uri . ?x rdf:type onto:River}
julipc-p(huggingface)
Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?
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:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri onto:company <http://dbpedia.org/resource/HBO> . ?uri rdf:type onto:Tel...
julipc-p(huggingface)
List the broadcast area of the TV stations which also serves in Agalga ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea res:Agaléga . ?x prop:broadcastArea ?uri . }
julipc-p(huggingface)
Into what military organizations is the United States Department of Defense divided?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_Defense }
julipc-p(huggingface)
Whose deputy is Neil Brown?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:deputy <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . }
julipc-p(huggingface)
In which broadcast area does the sister station of KFFG air ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:KFFG onto:sisterStation ?x . ?x onto:broadcastNetwork ?uri . }
julipc-p(huggingface)
which astronaut's mission was Apollo 11?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:mission res:Apollo_11 }
julipc-p(huggingface)
What is debut team of the baseball players who died in Los Angeles?
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/Los_Angeles> . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}
julipc-p(huggingface)
Which company owns instagram?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Instagram }
julipc-p(huggingface)
List all the former partners of the figure skater whose one of the former partner was Andrea poapst ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:formerPartner <http://dbpedia.org/resource/Andrea_Poapst> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
julipc-p(huggingface)
List all the operators of the train who operates in Budapest ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:operator <http://dbpedia.org/resource/Budapest> . ?x onto:operator ?uri . ?x rdf:type onto:Train}
julipc-p(huggingface)
What are the awards won by the producer of Puss in Boots (film)?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> onto:producer ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
Which president had lieutenants whose governor was Bill Clinton?
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:governor <http://dbpedia.org/resource/Bill_Clinton> . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}
julipc-p(huggingface)
Name the species of Liger ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liger onto:species ?uri }
julipc-p(huggingface)
In which state is the alma matter of Jan Paulsen located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jan_Paulsen onto:almaMater ?x . ?x prop:state ?uri . }
julipc-p(huggingface)
How many politicians are in the militia?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:branch <http://dbpedia.org/resource/Militia> . }
julipc-p(huggingface)
In which wars were people from the Saudi Arabian ministry of defense 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 ?uri WHERE { ?x prop:office <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x prop:battles ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?
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:firstTeam <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}
julipc-p(huggingface)
How many things do bridges designed by the UEM group go over?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer <http://dbpedia.org/resource/UEM_Group> . ?x prop:crosses ?uri . }
julipc-p(huggingface)
Under which US president was a politician in opposition of John G Schmitz?
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:opponent <http://dbpedia.org/resource/John_G._Schmitz> . ?x onto:incumbent ?uri . ?x rdf:type onto:Politician}
julipc-p(huggingface)
Whose theme music is composed by the band one of whose member is Les Claypool?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:bandMember res:Les_Claypool . ?uri prop:themeMusicComposer ?x . }
julipc-p(huggingface)
Who has recorded their singles in London?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/London> . ?x onto:writer ?uri . ?x rdf:type onto:Single}
julipc-p(huggingface)
Who are the associated musical artist of the artists of band Shorty Rogers?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Shorty_Rogers . ?x onto:associatedMusicalArtist ?uri . }
julipc-p(huggingface)
Who were the american football players who played for Dallas Cowboys?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:team <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri rdf:type onto:AmericanFootballPlayer}
julipc-p(huggingface)
Politicians born in Bangalore are now in which parties?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:homeTown res:Bangalore . ?x onto:party ?uri . }
julipc-p(huggingface)
What is the debut team of the baseball player who was born in Williamsburg, Kansas ?
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:birthPlace <http://dbpedia.org/resource/Williamsburg,_Kansas> . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}
julipc-p(huggingface)
Name the composer of motorpsycho Nitemare ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri }
julipc-p(huggingface)
Is James Hetfield a band member of Metallica?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Metallica onto:bandMember res:James_Hetfield . }
julipc-p(huggingface)
Stan Van Gundy serves as a head coach and president for which basketball team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:president res:Stan_Van_Gundy }
julipc-p(huggingface)
Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:cpu <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri onto:predecessor <http://dbpedia.org/resource/PlayStation_2> . ?uri rdf:type onto:InformationAppliance}
julipc-p(huggingface)
People who debuted from Houston Astros have played in which clubs?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam <http://dbpedia.org/resource/Houston_Astros> . ?x onto:team ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Radios on what topics can be tuned in to in Washington DC?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea <http://dbpedia.org/resource/Washington,_D.C.> . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}
julipc-p(huggingface)
Give me some shows related to the ones created by Russell Davies
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:creator <http://dbpedia.org/resource/Russell_T_Davies> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What is the territory of the conflict whose commander is Feng Zicai?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:commander <http://dbpedia.org/resource/Feng_Zicai> . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}
julipc-p(huggingface)
Name the person who was educated at Harvard-Westlake and won the Screen Actor Guild Life Achievement Award ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri onto:award <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?uri rdf:type onto:Pers...
julipc-p(huggingface)
Which club of Michael Springer is also the parent organization of Syracuse University press ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Syracuse_University_Press prop:parent ?uri}
julipc-p(huggingface)
Hugh Hefner is editor of which magazine?
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:editor <http://dbpedia.org/resource/Hugh_Hefner> . ?uri rdf:type onto:Magazine}
julipc-p(huggingface)
Whihc successor of McDonnell Douglas was built bu Delta 3 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri. res:McDonnell_Douglas prop:successor ?uri}
julipc-p(huggingface)
Which countries share a similar sociocultural and ethnic heritage of that of Native Indonesians?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Native_Indonesians prop:region ?uri }
julipc-p(huggingface)
What is the residence of the person, who starred in Men Will Be Men ?
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/Men_Will_Be_Men> onto:starring ?x . ?x prop:residence ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
What people are known to work for Johnny Cash?
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:associatedActs <http://dbpedia.org/resource/Johnny_Cash> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
In which state is Goose Lake Valle, which is also part of Lava River Cave ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Goose_Lake_Valley onto:state ?uri. res:Lava_River_Cave onto:location ?uri}
julipc-p(huggingface)
Where did some of the matches take place where Columbus Crew SC played?
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:team <http://dbpedia.org/resource/Columbus_Crew_SC> . ?x onto:location ?uri . ?x rdf:type onto:FootballMatch}
julipc-p(huggingface)
How many awards have been given to Italians?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace <http://dbpedia.org/resource/Italy> . ?x prop:awards ?uri . }
julipc-p(huggingface)
Count the number of cities around the American Mediterranean Sea?
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/American_Mediterranean_Sea> prop:cities ?uri . ?uri rdf:type onto:City}
julipc-p(huggingface)
List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:poleDriver <http://dbpedia.org/resource/Mika_Häkkinen> . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}
julipc-p(huggingface)
How many movies have their music signed up with Sony Music Entertainment.
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:recordLabel <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
What are the television shows whose network is BBC HD?
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 rdf:type onto:TelevisionShow}
julipc-p(huggingface)
To which party does the politician belong, who was born in Nandurbar?
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:placeOfBirth <http://dbpedia.org/resource/Nandurbar> . ?x onto:party ?uri . ?x rdf:type onto:Politician}
julipc-p(huggingface)
Name the people who were in a youth club managed by Luis Enrique ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:manager <http://dbpedia.org/resource/Luis_Enrique_(footballer)> . ?uri prop:youthclubs ?x . }
julipc-p(huggingface)
What is the local authority of Liverpool Institute High School for Boys ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liverpool_Institute_High_School_for_Boys onto:localAuthority ?uri }
julipc-p(huggingface)
What is the destinations of the airline whose headquarters is in Manchester?
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:headquarters <http://dbpedia.org/resource/Manchester> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}
julipc-p(huggingface)
who married crystal harris?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Crystal_Harris . }
julipc-p(huggingface)
Which job of Irving Chernev is the non-fiction subject of the Thud ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> onto:occupation ?uri. <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri}
julipc-p(huggingface)
Who gave the voice to the characters sculpted by Clamp?
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:creator <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x onto:voice ?uri . ?x rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
Where are the tombs of kings and queens who have died in England?
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/England> . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}
julipc-p(huggingface)
Who are the people whose alumna is a part of the National Collegiate Athletic Association?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:athletics res:National_Collegiate_Athletic_Association . ?uri prop:education ?x . }
julipc-p(huggingface)
On what subject does WTJC-LP air?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WTJC-LP> prop:format ?uri }
julipc-p(huggingface)
Name the television show whose voice is given by April Stewart and it's distributor is Broadcast syndication?
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:voices <http://dbpedia.org/resource/April_Stewart> . ?uri onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri rd...
julipc-p(huggingface)
In which city is the building, whose part is the Martin AN/FSG1 anti aircraft system?
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:part <http://dbpedia.org/resource/Martin_AN/FSG-1_Antiaircraft_Defense_System> . ?x prop:district ?uri . ?x rdf:type onto:Building}
julipc-p(huggingface)
Who wrote A house not meant to stand and Akale?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:A_House_Not_Meant_to_Stand prop:writer ?uri. res:Akale onto:writer ?uri}
julipc-p(huggingface)
Who managed England national under-20 football team and Middlesbrough F.C.?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs <http://dbpedia.org/resource/England_national_under-20_football_team> . ?uri onto:managerClub <http://dbpedia.org/resource/Middlesbrough_F.C.> . }
julipc-p(huggingface)
Who developed the software which is used as operating system of Magic Trackpad ?
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/Magic_Trackpad> onto:operatingSystem ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}
julipc-p(huggingface)
Who produced the TV shows for Fremantle Media?
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:company <http://dbpedia.org/resource/FremantleMedia> . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?
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:chairman <http://dbpedia.org/resource/Merritt_Paulson> . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}
julipc-p(huggingface)
In which state is Dorchester Bay (Boston Harbor) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dorchester_Bay_(Boston_Harbor)> prop:state ?uri }
julipc-p(huggingface)
Name the veneration of the monarch who is the predecessor of Solomon?
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/Solomon> prop:predecessor ?x . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Monarch}
julipc-p(huggingface)
Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> prop:cinematography ?uri. <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> prop:animator ?uri}
julipc-p(huggingface)
Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Estadio_Nacional_de_Costa_Rica_(2011)> onto:builder ?uri. <http://dbpedia.org/resource/Xianren_Cave> onto:country ?uri}
julipc-p(huggingface)
Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Glover_(video_game)> onto:distributor ?uri. <http://dbpedia.org/resource/Super_Mario_Adventures> prop:publisher ?uri}
julipc-p(huggingface)
How many movies did Michael Deeley produce?
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:producer <http://dbpedia.org/resource/Michael_Deeley> . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Who is a famous relative of Aaround Van Heemstra?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:relative <http://dbpedia.org/resource/Aarnoud_van_Heemstra> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
What awards have been given to the anyone who raced in the Lawrence Realization Stakes?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:race res:Lawrence_Realization_Stakes . ?x onto:honours ?uri . }
julipc-p(huggingface)
How many battles have involved commanders of 1st Free French Division?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/1st_Free_French_Division> prop:notableCommanders ?x . ?x prop:battles ?uri . }
julipc-p(huggingface)
How many areas are led by Willem Alexander?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:leader <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . }
julipc-p(huggingface)
Name the movie in which Vangelis gave the music and Jordan was the cinematographer ?
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:music <http://dbpedia.org/resource/Vangelis> . ?uri onto:cinematography <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri rdf:type ...
julipc-p(huggingface)
In how many places are the companies founded in Canada operating?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/Canada> . ?x prop:locations ?uri . }
julipc-p(huggingface)
Count the number of movies whose editors were born in UK?
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:birthPlace <http://dbpedia.org/resource/United_Kingdom> . ?uri prop:editing ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Which countries were led by Pietro Parolin?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:leader <http://dbpedia.org/resource/Pietro_Parolin> . ?uri rdf:type onto:Country}
julipc-p(huggingface)
List the sports played in private universities.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:type res:Private_university . ?x onto:sport ?uri . }
julipc-p(huggingface)
Who is the performer of album which has the song "To Where You Are" ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:To_Where_You_Are onto:album ?x . ?x onto:artist ?uri . }
julipc-p(huggingface)
How many companies were founded in places where Dallas is the governing body ?
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:governingBody <http://dbpedia.org/resource/Dallas> . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}
julipc-p(huggingface)
What Orson Welles directed movie has photography director as Gregg Toland ?
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:cinematography <http://dbpedia.org/resource/Gregg_Toland> . ?uri prop:director <http://dbpedia.org/resource/Orson_Welles> . ?uri rdf:typ...
julipc-p(huggingface)
Who founded the city at the end of the Pittsburgh Line route?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pittsburgh_Line onto:routeEnd ?x . ?x onto:founder ?uri . }
julipc-p(huggingface)
Name the hubs of the airlines whose headquarters is in the Subang Interchange?
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:headquarters <http://dbpedia.org/resource/Subang_Interchange> . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}
julipc-p(huggingface)
Name the television show whose network is TNT (TV channel) and 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/TNT_(TV_channel)> . ?uri onto:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Network...
julipc-p(huggingface)
List the honorary title given to the spouse of Lillian Disney ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lillian_Disney prop:spouse ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
How many games have a publisher based in US?
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:location <http://dbpedia.org/resource/United_States> . ?uri onto:publisher ?x . ?uri rdf:type onto:VideoGame}
julipc-p(huggingface)
Where does the rail route, which ends at the Moskovsky station, begins?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd <http://dbpedia.org/resource/Moskovsky_railway_station_(Saint_Petersburg)> . ?x onto:routeStart ?uri . }
julipc-p(huggingface)
How many people have played for the NBA?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:league <http://dbpedia.org/resource/National_Basketball_Association> . }
julipc-p(huggingface)
Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> prop:music ?uri. <http://dbpedia.org/resource/Alana_Stewart> onto:spouse ?uri}
julipc-p(huggingface)
What is the nationality of the golf player who won the 2002 Players Championship ?
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/2002_Players_Championship> onto:champion ?x . ?x onto:nationality ?uri . ?x rdf:type onto:GolfPlayer}
julipc-p(huggingface)
Which builder of Edwin Andrews Air Base isalso place of birth of the Akinoumi Setsuo ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Edwin_Andrews_Air_Base onto:builder ?uri. res:Akinoumi_Setsuo prop:placeOfBirth ?uri}
julipc-p(huggingface)
How many labels sign up progressive rock artists?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:genre <http://dbpedia.org/resource/Progressive_rock> . ?x onto:recordLabel ?uri . }
julipc-p(huggingface)
Which continents can be reached by flight companies available on Gatwick Airport?
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:targetAirport <http://dbpedia.org/resource/Gatwick_Airport> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}
julipc-p(huggingface)
Where is Benjamin Franklin Terry buried, and US Route 59 has a junction?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Benjamin_Franklin_Terry prop:placeofburial ?uri. res:U.S._Route_59_in_Texas prop:junction ?uri}
julipc-p(huggingface)
Who are some authoritative persons on the matter of Megabalanus concinnus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Megabalanus_concinnus onto:binomialAuthority ?uri }
julipc-p(huggingface)