question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who all have succeeded the kings buried in Rome?
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:placeOfBurial <http://dbpedia.org/resource/Rome> . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}
julipc-p(huggingface)
Through which states do the rivers flow which join in the republican river from the left?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Republican_River onto:leftTributary ?x . ?x onto:state ?uri . }
julipc-p(huggingface)
Give me the home town of all musical artists who uses Guitar as instrument ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:instrument <http://dbpedia.org/resource/Guitar> . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}
julipc-p(huggingface)
How many religions are followed amongst the people who've worked in the Korean army?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch <http://dbpedia.org/resource/Republic_of_Korea_Army> . ?x onto:religion ?uri . }
julipc-p(huggingface)
Count the number of musical work which were sold by Sony 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 COUNT(?uri) WHERE { ?x prop:label <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri prop:music ?x . ?uri rdf:type onto:MusicalWork}
julipc-p(huggingface)
Who is the person whose home town is Fairmount, Indiana?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:hometown <http://dbpedia.org/resource/Fairmount,_Indiana> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?
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:editing <http://dbpedia.org/resource/Anthony_Harvey> . ?uri rdf:type ...
julipc-p(huggingface)
List all binomial authority of the insects whose one of the binomial authority is douard Mntries?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:binomialAuthority res:Édouard_Ménétries . ?x onto:binomialAuthority ?uri . }
julipc-p(huggingface)
Who is the military general buried in St Mary's Church, Battersea?
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:placeofburial <http://dbpedia.org/resource/St_Mary's_Church,_Battersea> . ?uri rdf:type onto:MilitaryPerson}
julipc-p(huggingface)
What are some other things developed by the company who made the remote desktop protocol?
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:products <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x onto:product ?uri . ?x rdf:type onto:Company}
julipc-p(huggingface)
Where was Al-Muzaffar Umar buried ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al-Muzaffar_Umar> prop:placeOfBurial ?uri }
julipc-p(huggingface)
List the guests of On Broadway ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> prop:guests ?uri }
julipc-p(huggingface)
How many universities are there whose country's capital is Oslo?
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:capital <http://dbpedia.org/resource/Oslo> . ?uri onto:country ?x . ?uri rdf:type onto:University}
julipc-p(huggingface)
What is the religion of the ones in the Kampuchean Union of Salvation?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch res:Kampuchean_United_Front_for_National_Salvation . ?x onto:religion ?uri . }
julipc-p(huggingface)
Where did the members of judge advocate general corps study?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?x onto:almaMater ?uri . }
julipc-p(huggingface)
Name the airlines which have a hub in airport in SF?
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:cityServed <http://dbpedia.org/resource/San_Francisco> . ?uri prop:hubs ?x . ?uri rdf:type onto:Airline}
julipc-p(huggingface)
What is the official name of Colorado wine ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Colorado_wine prop:officialName ?uri }
julipc-p(huggingface)
In how many states can one find Burr Tuss kind of bridges?
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:style <http://dbpedia.org/resource/Burr_Truss> . ?x onto:state ?uri . ?uri rdf:type onto:Region}
julipc-p(huggingface)
who developed google videos?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri }
julipc-p(huggingface)
Who is the child of John Tyler, Sr.?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Tyler,_Sr.> onto:child ?uri }
julipc-p(huggingface)
Name all those buried in a place governed by a city council.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:City_council . ?uri prop:restingPlace ?x . }
julipc-p(huggingface)
What royalties's sepulchre is Mausoleum of Augustus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial res:Mausoleum_of_Augustus }
julipc-p(huggingface)
What is the automobile platform of Chiva bus ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chiva_bus onto:automobilePlatform ?uri }
julipc-p(huggingface)
Who are the animator of The Skeleton Dance?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?uri }
julipc-p(huggingface)
How many movies have a screenplay located in the States?
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_States> . ?uri prop:screenplay ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> onto:ceremonialCounty ?uri. <http://dbpedia.org/resource/Trinity_School,_Brentwood> onto:localAuthority ?uri}
julipc-p(huggingface)
Name the country whose leader's deputy is Piotr Glinski?
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:deputy <http://dbpedia.org/resource/Piotr_Gliński> . ?uri prop:leaderName ?x . ?uri rdf:type onto:Country}
julipc-p(huggingface)
Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?
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:related <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer>...
julipc-p(huggingface)
Name the parent company of Ford Air Transport Service ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ford_Air_Transport_Service onto:parentCompany ?uri }
julipc-p(huggingface)
Which region of Bannock is the origin od Spaghetti squash ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spaghetti_squash> onto:origin ?uri. <http://dbpedia.org/resource/Bannock_(food)> onto:region ?uri}
julipc-p(huggingface)
Count everyone who lives in a place where Indian English is an official language ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/Indian_English> . ?uri onto:residence ?x . }
julipc-p(huggingface)
How many religions are practiced by diplomats?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession <http://dbpedia.org/resource/Diplomacy> . ?x prop:religion ?uri . }
julipc-p(huggingface)
Was Elton John a chairman of a Watford FC Season?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/1999–2000_Watford_F.C._season> onto:chairman <http://dbpedia.org/resource/Elton_John> }
julipc-p(huggingface)
Which publisher of Lucifer's hammer is also known for Jo Garcia ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> onto:publisher ?uri. <http://dbpedia.org/resource/Jo_Garcia> onto:knownFor ?uri}
julipc-p(huggingface)
To whom was Tessa Dahl born to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Tessa_Dahl onto:parent ?uri }
julipc-p(huggingface)
Which sport at Polytechnic University of the Philippines Taguig is the field of Jon speelman ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}
julipc-p(huggingface)
Count the number of things people who know linguistics are known for ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:knownFor <http://dbpedia.org/resource/Linguistics> . ?x onto:knownFor ?uri }
julipc-p(huggingface)
Where were sverre krogh sundbo and havard vad petersson born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sverre_Krogh_Sundbø prop:birthPlace ?uri. res:Håvard_Vad_Petersson prop:placeOfBirth ?uri}
julipc-p(huggingface)
How many religions are followed by organizations which are internationally known as the muslim brotherhood?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:international <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x onto:religion ?uri . }
julipc-p(huggingface)
What are some people born in NY known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:New_York_City . ?x onto:knownFor ?uri . }
julipc-p(huggingface)
Who is the developer of the software which is produced by Claris ?
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/Claris> prop:products ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}
julipc-p(huggingface)
What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:source <http://dbpedia.org/resource/Cowombat_Flat> . ?uri onto:riverMouth <http://dbpedia.org/resource/Murray_Mouth> . ?uri rdf:type onto:River}
julipc-p(huggingface)
Where does the river flow into which begins in Lebrsnik?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:riverMouth ?uri . }
julipc-p(huggingface)
What is the government type of Ancient Rome ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ancient_Rome onto:governmentType ?uri }
julipc-p(huggingface)
What is the television show whose channel's parent organisation is Fox Sports?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation <http://dbpedia.org/resource/Fox_Sports_(United_States)> . ?uri onto:channel ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
What is the home ground of the clubs managed by Ciao Zanardi?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:manager <http://dbpedia.org/resource/Caio_Zanardi> . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}
julipc-p(huggingface)
What is the country with native language as Languages of Ethiopia?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:language <http://dbpedia.org/resource/Languages_of_Ethiopia> . ?uri rdf:type onto:Country}
julipc-p(huggingface)
List the people with Scientology as their religious belief?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:religion <http://dbpedia.org/resource/Scientology> . ?uri rdf:type onto:Person}
julipc-p(huggingface)
How many fictional characters were humans?
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:species <http://dbpedia.org/resource/Human> . ?uri rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
Where was Girls (The Prodigy song) recorded ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> prop:recorded ?uri }
julipc-p(huggingface)
How many TV shows' networks are headquarterd in NY?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters <http://dbpedia.org/resource/New_York> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
How many teams have rented stadiums in Canada?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location <http://dbpedia.org/resource/Canada> . ?x prop:tenants ?uri . }
julipc-p(huggingface)
List the awards won by the film director of Chicken Run?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chicken_Run prop:director ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sino-French_War> onto:territory ?uri. <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> prop:battles ?uri}
julipc-p(huggingface)
List the outflow of Lake Uniamsi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési onto:outflow ?uri }
julipc-p(huggingface)
List the universities from a country where Norwegian language is officially accepted.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/Norwegian_language> . ?uri onto:country ?x . ?uri rdf:type onto:University}
julipc-p(huggingface)
Name the incumbent of Linda Jenness ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Linda_Jenness onto:incumbent ?uri }
julipc-p(huggingface)
Which companies makes cars assembled in Karachi, Pakistan?
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:assembly <http://dbpedia.org/resource/Karachi> . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}
julipc-p(huggingface)
Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?
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:foundedBy <http://dbpedia.org/resource/Fusajiro_Yamauchi> . ?uri prop:services <http://dbpedia.org/resource/Nintendo_eShop> . ?uri rdf:t...
julipc-p(huggingface)
In which countries does the sea lie on whose shore is the city of Cumana?
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:cities <http://dbpedia.org/resource/Cumaná> . ?x onto:country ?uri . ?x rdf:type onto:Sea}
julipc-p(huggingface)
Tirana is the largest city of which country?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:largestCity <http://dbpedia.org/resource/Tirana> . ?uri rdf:type onto:Country}
julipc-p(huggingface)
From which countries are the people from who are an academic authority of the Western pygmy blue species?
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/Western_pygmy_blue> onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Person}
julipc-p(huggingface)
Where is the headquarters of Sigma TV
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sigma_TV prop:headquarters ?uri }
julipc-p(huggingface)
Which scientist was advised by John Robert Woodyard?
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:doctoralAdvisor <http://dbpedia.org/resource/John_Robert_Woodyard> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
What is the launch site of the Juno I which was also the ground of 2016 Fort Lauderdale Strikers season ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Juno_I onto:launchSite ?uri. res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri}
julipc-p(huggingface)
Count the affiliations of International Union of Anarchists?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/International_Union_of_Anarchists> prop:affiliation ?uri . }
julipc-p(huggingface)
What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?
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:doctoralAdvisor <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}
julipc-p(huggingface)
List the people residing in Wilton, Connecticut?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:residence <http://dbpedia.org/resource/Wilton,_Connecticut> }
julipc-p(huggingface)
What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Peetz_Table_Wind_Energy_Center prop:location ?uri. res:Ben_Nighthorse_Campbell prop:state ?uri}
julipc-p(huggingface)
Count the water bodies that flow into the North Sea?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/North_Sea> prop:inflow ?uri . }
julipc-p(huggingface)
Who was the First Driver of 1999 San Marino Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix prop:firstDriver ?uri }
julipc-p(huggingface)
Bantam Spectra is the publisher of which series?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:publisher res:Bantam_Spectra . ?x onto:series ?uri . }
julipc-p(huggingface)
Where is the sister station of Al Arabiya 99 located?
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:sisterStations <http://dbpedia.org/resource/Al_Arabiya_99> . ?x prop:location ?uri . ?x rdf:type onto:RadioStation}
julipc-p(huggingface)
How many things are produced by companies located in Tehran?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location <http://dbpedia.org/resource/Tehran> . ?x onto:product ?uri . }
julipc-p(huggingface)
Name the officeholder who hasa child named Augustus and has an associate named Marcus Bibulus ?
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:associate <http://dbpedia.org/resource/Marcus_Calpurnius_Bibulus> . ?uri prop:children <http://dbpedia.org/resource/Augustus> . ?uri rdf...
julipc-p(huggingface)
Give me someone on the board of trinity house?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:board res:Trinity_House . }
julipc-p(huggingface)
Horses grandsired by Sundridge have won which awards?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:grandsire <http://dbpedia.org/resource/Sundridge_(horse)> . ?x onto:honours ?uri . ?x rdf:type onto:Horse}
julipc-p(huggingface)
What is the river whose source region is North-Western Province, Zambia and river mouth is Indian Ocean?
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:sourceRegion <http://dbpedia.org/resource/North-Western_Province,_Zambia> . ?uri onto:riverMouth <http://dbpedia.org/resource/Indian_Oce...
julipc-p(huggingface)
Who was on the first team in the GPs that were held at Watkins Glen, NY?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:location <http://dbpedia.org/resource/Watkins_Glen,_New_York> . ?x prop:firstTeam ?uri . ?x rdf:type onto:GrandPrix}
julipc-p(huggingface)
Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?
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:screenplay <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri onto:director <http://dbpedia.org/resource/Joel_Schumacher> . ?uri rdf:ty...
julipc-p(huggingface)
What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Linda_Hogan onto:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri}
julipc-p(huggingface)
What are the track and field events of Jamiatu Muslim Mindanao?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao prop:athletics ?uri }
julipc-p(huggingface)
How many cities are close to Lake Victoria?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lake_Victoria> onto:nearestCity ?uri . }
julipc-p(huggingface)
What is the baseball team whose club manager's debut team is Houston Astros?
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> . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}
julipc-p(huggingface)
What cities are near to Nihoa which is also known as Bird Island ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Nihoa prop:nearestCity ?uri }
julipc-p(huggingface)
Which shareholder of Naval Air facility Adak is also the operator of New Sanno Hotel ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel prop:operator ?uri. res:Naval_Air_Facility_Adak prop:owner ?uri}
julipc-p(huggingface)
What other awards have been given to Golden Globe winners?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:award res:Golden_Globe_Award . ?x prop:awards ?uri . }
julipc-p(huggingface)
Which allegiance of the John Kotelawala is also the sovereign state of the Sanath Weerakoon ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri. res:Sanath_Weerakoon onto:country ?uri}
julipc-p(huggingface)
List the television shows whose network's sister names is N-tv.
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/N-tv> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
God Defend New Zealand is the national anthem of which country?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:nationalAnthem res:God_Defend_New_Zealand }
julipc-p(huggingface)
Where do the rivers starting from Zambia 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:sourceCountry <http://dbpedia.org/resource/Zambia> . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}
julipc-p(huggingface)
Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh)
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kumta> prop:governmentType ?uri. <http://dbpedia.org/resource/Indian_general_election,_2004_(Andhra_Pradesh)> onto:affiliation ?uri}
julipc-p(huggingface)
Where is the king buried whose predecessor was Iyasu II?
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:predecessor <http://dbpedia.org/resource/Iyasu_II> . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Monarch}
julipc-p(huggingface)
In how many different places have people beatified by Pope Pius X died?
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:beatifiedBy <http://dbpedia.org/resource/Pope_Pius_X> . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}
julipc-p(huggingface)
What faiths are followed by the relatives of Meadow Soprano?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Meadow_Soprano onto:relative ?x . ?x onto:religion ?uri . }
julipc-p(huggingface)
Where is the headquarters of the public transit system which owns Target Field, a Metro Transit Station ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Target_Field_(Metro_Transit_station)> onto:owningOrganisation ?x . ?x prop:headquarters ?uri . }
julipc-p(huggingface)
What is the nationality of Aishath Saffa ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aishath_Saffa prop:nationality ?uri }
julipc-p(huggingface)
who was the president under whom winston bryant served as a lieutenant?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:lieutenant res:Winston_Bryant }
julipc-p(huggingface)
What are the bands associated with the artists of My Favorite Girl ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/My_Favorite_Girl_(Dave_Hollister_song)> prop:artist ?x . ?x onto:associatedBand ?uri . }
julipc-p(huggingface)
On what subjects was Broca's Brain written?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Broca's_Brain> prop:subject ?uri }
julipc-p(huggingface)