question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Who is the co-founder of the city where Owen Dougherty 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 ?uri WHERE { <http://dbpedia.org/resource/Owen_Dougherty> prop:placeOfDeath ?x . ?x onto:founder ?uri . ?x rdf:type onto:City} | julipc-p(huggingface) |
For which teams did the Hawai graduated players play their first game? | 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:college <http://dbpedia.org/resource/Hawaii> . ?x onto:debutTeam ?uri . ?x rdf:type onto:Athlete} | julipc-p(huggingface) |
What is the title of Kakae ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri } | julipc-p(huggingface) |
Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri. res:Michael_Medor onto:nationality ?uri} | julipc-p(huggingface) |
What is the county of the road whose route end is Pahang ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd <http://dbpedia.org/resource/Pahang> . ?x onto:county ?uri . ?x rdf:type onto:Road} | julipc-p(huggingface) |
Who wrote Heroman? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Heroman prop:author ?uri } | julipc-p(huggingface) |
Name the person who died in Fair Lane ? | 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:deathPlace <http://dbpedia.org/resource/Fair_Lane> . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
List the religion of people in the Cambodian human rights party? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:otherParty <http://dbpedia.org/resource/Human_Rights_Party_(Cambodia)> . ?x onto:religion ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
What relegious affiliation of Josiah Idowu-Fearon was canonized by john of Damasucs ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_of_Damascus> onto:canonizedBy ?uri. <http://dbpedia.org/resource/Josiah_Idowu-Fearon> onto:religion ?uri} | julipc-p(huggingface) |
Which draft team od Dale Mitchell is also the tenant of Master Card center / | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dale_Mitchell_(ice_hockey)> onto:draftTeam ?uri. <http://dbpedia.org/resource/MasterCard_Centre> prop:tenants ?uri} | julipc-p(huggingface) |
What cities does the river goes through, whose tributary is the little black river in Arkansas? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary <http://dbpedia.org/resource/Little_Black_River_(Missouri_-_Arkansas)> . ?x onto:city ?uri . ?x rdf:type onto:River} | julipc-p(huggingface) |
What show has judge as Randy Jackson sculptors as Simon Fuller? | 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:judges <http://dbpedia.org/resource/Randy_Jackson> . ?uri prop:creator <http://dbpedia.org/resource/Simon_Fuller> . ?uri rdf:type onto:T... | julipc-p(huggingface) |
Which nation's engineers have graduated in Poland? | 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:education <http://dbpedia.org/resource/Poland> . ?x prop:nationality ?uri . ?x rdf:type onto:Engineer} | julipc-p(huggingface) |
Give me a count of movies whose music composer is Bernard Herrmann? | 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:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
What awards have been given to the artists coming out of the university of Melbourne, faculty of VCA and MCM? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:training <http://dbpedia.org/resource/University_of_Melbourne_Faculty_of_VCA_and_MCM> . ?x onto:award ?uri . ?x rdf:type onto:Artist} | julipc-p(huggingface) |
List the destinations of Novair International Airways ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways prop:destinations ?uri } | julipc-p(huggingface) |
Name the state of Timothy J. Roemer ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Timothy_J._Roemer prop:state ?uri } | julipc-p(huggingface) |
What are all the religions that have been followed by the Sir Lankan attorneys? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Attorneys_in_Sri_Lanka . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Which awards have been given to the horse who sired Triplicate ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Triplicate prop:sire ?x . ?x onto:honours ?uri . } | julipc-p(huggingface) |
Where did the spouse of pmare ii die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:spouse res:Pōmare_II . ?x onto:deathPlace ?uri . } | julipc-p(huggingface) |
Into which water bodies does Lake Uniamsi outflow? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri } | julipc-p(huggingface) |
Which river does Katima Mulilo Bridge cross? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Katima_Mulilo_Bridge prop:crosses ?uri } | julipc-p(huggingface) |
Which office holder's successor is Adrian A. Basora and child named Lori Black? | 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:successor <http://dbpedia.org/resource/Adrian_A._Basora> . ?uri prop:children <http://dbpedia.org/resource/Lori_Black> . ?uri rdf:type o... | julipc-p(huggingface) |
What is the debut team of Tom O'Malley ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tom_O'Malley> prop:debutteam ?uri } | julipc-p(huggingface) |
In which country is Bocas del toro a capital of some region? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:capital <http://dbpedia.org/resource/Bocas_Town,_Bocas_del_Toro> . ?x prop:country ?uri . } | julipc-p(huggingface) |
What is the political party to which Purnima Banerjee is a member of?? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Purnima_Banerjee onto:party ?uri } | julipc-p(huggingface) |
What is the headquarters of the public transit system which is the section of Red Ahead ? | 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/Red_Ahead> onto:isPartOf ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem} | julipc-p(huggingface) |
List the leaders of all the cities through which the Ganga river flows ? | 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/Ganges> prop:city ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:City} | julipc-p(huggingface) |
Who has written works found in the Gangan comics? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:magazine res:Gangan_Comics . ?x prop:author ?uri . } | julipc-p(huggingface) |
What is the currency of Republic of Montenegro (1992-2006) ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Republic_of_Montenegro_(1992–2006)> prop:currency ?uri } | julipc-p(huggingface) |
What is the device whose successor's CPU is by AMD? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:cpu <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri onto:successor ?x . ?uri rdf:type onto:Device} | julipc-p(huggingface) |
What is the club of Perianne Jones ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Perianne_Jones prop:club ?uri } | julipc-p(huggingface) |
What awards did the founder of Grameen Bank win? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Grameen_Bank prop:founder ?x . ?x onto:award ?uri . } | julipc-p(huggingface) |
What television show is aired on channel Sirius XM Holdings? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:channel <http://dbpedia.org/resource/Sirius_XM_Holdings> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
How many have order (taxonomy) as Bacillales and division as Firmicutes are there? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order <http://dbpedia.org/resource/Bacillales> . ?uri onto:division <http://dbpedia.org/resource/Firmicutes> } | julipc-p(huggingface) |
What is the movie whose producer is Michael Deeley and directed by Ridley Scott? | 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/Michael_Deeley> . ?uri prop:director <http://dbpedia.org/resource/Ridley_Scott> . ?uri rdf:type on... | julipc-p(huggingface) |
Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> onto:manufacturer ?uri. <http://dbpedia.org/resource/Ford_Air_Transport_Service> prop:parent ?uri} | julipc-p(huggingface) |
Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Oahu_Railway_and_Land_Company prop:governingBody ?uri. res:Jimmy_Quillen onto:militaryBranch ?uri} | julipc-p(huggingface) |
Which arena of WPC Dynamo Moscow is the death palce of Mikhail Voronin ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri. res:Mikhail_Voronin prop:deathPlace ?uri} | julipc-p(huggingface) |
Name the TV show with Simon Fuller as artist and Fox as the channel ? | 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:creator <http://dbpedia.org/resource/Simon_Fuller> . ?uri prop:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri rdf... | julipc-p(huggingface) |
Who are the opponents of graduates of the Middle Temple? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:education res:Middle_Temple . ?x onto:opponent ?uri . } | julipc-p(huggingface) |
What religions are followed by economists? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Economist . ?x onto:religion ?uri . } | julipc-p(huggingface) |
What are some important works of US citizens? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:nationality res:United_States . ?x onto:notableWork ?uri . } | julipc-p(huggingface) |
Name the rivers whose source country's capital is Lusaka? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:capital <http://dbpedia.org/resource/Lusaka> . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River} | julipc-p(huggingface) |
Which sports are played typically in private schools? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:schooltype res:Private_school . ?x onto:sport ?uri . } | julipc-p(huggingface) |
What is the state of the senator whose successor is Nathaniel P. Hill ? | 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:successor <http://dbpedia.org/resource/Nathaniel_P._Hill> . ?x prop:state ?uri . ?x rdf:type onto:Senator} | julipc-p(huggingface) |
How many shows is Russell Davies known for? | 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/Russell_T_Davies> prop:notableworks ?uri . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Who manages the operator of Norman Park Branch, CTA? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Normal_Park_branch_(CTA)> prop:operator ?x . ?x onto:operatedBy ?uri . } | julipc-p(huggingface) |
What is the casting of the movie directed by Justin Zackham ? | 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:director <http://dbpedia.org/resource/Justin_Zackham> . ?x prop:starring ?uri . ?x rdf:type onto:Film} | julipc-p(huggingface) |
Name the island with archipelago as Society Islands and has the largest city named Faaa ? | 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:largestCity <http://dbpedia.org/resource/Faaa> . ?uri prop:archipelago <http://dbpedia.org/resource/Society_Islands> . ?uri rdf:type ont... | julipc-p(huggingface) |
List all the mmebers of Mekong River Commission? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Mekong_River_Commission prop:membership ?uri } | julipc-p(huggingface) |
Name the actors of the TV show which has an episode named The Five ? | 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/The_Five_(The_Vampire_Diaries)> prop:series ?x . ?x prop:starring ?uri . ?x rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
How many religion's people have died in Malaysia? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Malaysia> . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Name the HBO TV show written by Erik jendresen ? | 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:company <http://dbpedia.org/resource/HBO> . ?uri prop:writer <http://dbpedia.org/resource/Erik_Jendresen> . ?uri rdf:type onto:Televisio... | julipc-p(huggingface) |
How many different currencies are used in the places governed by the president of France? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderTitle <http://dbpedia.org/resource/President_of_France> . ?x onto:currency ?uri . } | julipc-p(huggingface) |
List the team for which Doug Acomb played ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Doug_Acomb prop:playedFor ?uri } | julipc-p(huggingface) |
Which architect of Marine Corps Air Station Kaneohe Bay was also tenant of New Sanno hotel /' | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri. res:New_Sanno_Hotel onto:tenant ?uri} | julipc-p(huggingface) |
Which sects people are part of local political parties which fall under the International Muslim Brotherhood? | 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:international <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty} | julipc-p(huggingface) |
List common systems are developed by of the Google Videos and written by of the Google Web Toolkit ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri. res:Google_Web_Toolkit onto:author ?uri} | julipc-p(huggingface) |
Which television show 's producer is Stephen E. Ambrose and written by Erik Jendresen? | 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 prop:writer <http://dbpedia.org/resource/Erik_Jendresen> . ?uri rdf:typ... | julipc-p(huggingface) |
Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is 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:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Networ... | julipc-p(huggingface) |
How many other battles have the military person fought whose one of the battles is World War II ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/World_War_II> . ?x prop:battles ?uri } | julipc-p(huggingface) |
Whose network's parent organisation is Comcast? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation res:Comcast . ?uri onto:network ?x . } | julipc-p(huggingface) |
Which cport of Vishwajyot High School is also the genere of Battle chess | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri. res:Vishwajyot_High_School onto:sport ?uri} | julipc-p(huggingface) |
In which state is the Channel district? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Channel_District onto:state ?uri } | julipc-p(huggingface) |
What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant <http://dbpedia.org/resource/Raptors_905> . ?x onto:tenant ?uri } | julipc-p(huggingface) |
Where can one find the Dzogchen Ponolop Rinpoche? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Dzogchen_Ponlop_Rinpoche prop:location ?uri } | julipc-p(huggingface) |
Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:operator <http://dbpedia.org/resource/Massachusetts_Department_of_Transportation> . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel} | julipc-p(huggingface) |
What are the awards won by the film director of Saraband ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Saraband onto:director ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
What is the almamater of the president whose vice president was Enrique Jos Varona? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident res:Enrique_José_Varona . ?x onto:almaMater ?uri . } | julipc-p(huggingface) |
What is the route end of Birmingham and Oxford Junction Railway ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri } | julipc-p(huggingface) |
Where did the Vitis Vinifera grapes originate? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:species <http://dbpedia.org/resource/Vitis_vinifera> . ?x onto:origin ?uri . ?x rdf:type onto:Grape} | julipc-p(huggingface) |
How many people are there whose children died in Indiana? | 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:deathPlace <http://dbpedia.org/resource/Indiana> . ?uri onto:child ?x . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
What is the military branch of the William French Smith which is also the branch of Pierre R. Graham ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_French_Smith onto:militaryBranch ?uri. res:Pierre_R._Graham prop:branch ?uri} | julipc-p(huggingface) |
What is the river whose source is Lake Ontario? | 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/Lake_Ontario> . ?uri rdf:type onto:River} | julipc-p(huggingface) |
Whichlocation city of the Denver Broncos is the palce of birth of Steven Clark Cunningham ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:Steven_Clark_Cunningham onto:birthPlace ?uri} | julipc-p(huggingface) |
What is the religion of the person who founded the Emel 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 { <http://dbpedia.org/resource/Emel_(magazine)> prop:founder ?x . ?x onto:religion ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
How many cities are around the sea in which the the fig tree bay meets? | 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/Fig_Tree_Bay> onto:inflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea} | julipc-p(huggingface) |
Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann? | 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:distributor <http://dbpedia.org/resource/RKO_Pictures> . ?uri onto:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri r... | julipc-p(huggingface) |
How many pole drivers have been there in grand prixes where first driver was Damon Hill? | 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:firstDriver <http://dbpedia.org/resource/Damon_Hill> . ?x onto:poleDriver ?uri . ?uri rdf:type onto:FormulaOneRacer} | julipc-p(huggingface) |
Where are jockeys in Dubai World Cup from? | 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:race <http://dbpedia.org/resource/Dubai_World_Cup> . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey} | julipc-p(huggingface) |
Who owns the newspaper which was founded by Nehru? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:founder <http://dbpedia.org/resource/Jawaharlal_Nehru> . ?x onto:owner ?uri . ?x rdf:type onto:Newspaper} | julipc-p(huggingface) |
To which places do the flights go by airlines headquartered in the 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 ?uri WHERE { ?x prop:headquarters <http://dbpedia.org/resource/United_Kingdom> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline} | julipc-p(huggingface) |
What is the magazine which have been founded by Ralph J. Gleason? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:founder <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri rdf:type onto:Magazine} | julipc-p(huggingface) |
In which cities can the beverage related to Barq's be found? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> onto:related ?x . ?x prop:locationCity ?uri . } | julipc-p(huggingface) |
What is the birth place of the astronaut whose mission was the Vostok programmer? | 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:mission <http://dbpedia.org/resource/Vostok_programme> . ?x onto:birthPlace ?uri . ?x rdf:type onto:Astronaut} | julipc-p(huggingface) |
Count everyone who studied at an institute which are in Suburbs? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus <http://dbpedia.org/resource/Suburb> . ?uri prop:education ?x . } | julipc-p(huggingface) |
Where did Whitney Wistert debut? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Whitey_Wistert prop:debutteam ?uri } | julipc-p(huggingface) |
What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia? | 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:successor <http://dbpedia.org/resource/Dragimir_of_Travunia_and_Zachlumia> . ?x prop:majorShrine ?uri . ?x rdf:type onto:Monarch} | julipc-p(huggingface) |
How many television shows have Fox Broadcasting Company as their channel? | 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:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
What are some wars fought when Chung Il Kwon as the country's prime minister? | 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:primeminister <http://dbpedia.org/resource/Chung_Il-kwon> . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict} | julipc-p(huggingface) |
Where was the person born who died in Bryn Mawr Hospital? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath res:Bryn_Mawr_Hospital . ?x prop:placeOfBirth ?uri . } | julipc-p(huggingface) |
What is the faith of the Ajith Perera and religious affiliation of the Neungin High School? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ajith_Perera onto:religion ?uri. res:Neungin_High_School prop:religiousAffiliation ?uri} | julipc-p(huggingface) |
Who was in military unit which played the role of Air interdiction? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:role res:Air_interdiction . ?uri onto:militaryUnit ?x . } | julipc-p(huggingface) |
Who are the current members of Insects vs Robots? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Insects_vs_Robots prop:currentMembers ?uri } | julipc-p(huggingface) |
Greater Napanee is the home town of what people? | 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/Greater_Napanee> . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
Name the nationalteam of Trn Vit Hng ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Trần_Việt_Hương prop:nationalteam ?uri } | julipc-p(huggingface) |
Which designer of RENFE also owns Renaissance Center ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:RENFE_Class_333 onto:designer ?uri. res:Renaissance_Center prop:owner ?uri} | julipc-p(huggingface) |
Whihc uni did Joshua A. Siegel attend ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Joshua_A._Siegel prop:education ?uri } | julipc-p(huggingface) |
How many books are written by the author who is famous for Novelas Ejemplares? | 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:notableWork <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri onto:author ?x . ?uri rdf:type onto:Book} | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.