question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:cinematography <http://dbpedia.org/resource/Gregg_Toland> . ?uri onto:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Name the company with product lines like Visual studio and Surface ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?uri onto:product <http://dbpedia.org/resource/Microsoft_Surface> . ?ur... | julipc-p(huggingface) |
How many contries surround the seas on the banks of which is the city of Cancun? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities <http://dbpedia.org/resource/Cancún> . ?x onto:country ?uri . } | julipc-p(huggingface) |
Name the other wine region of the grapes whose one of the wine region is Michigan? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion <http://dbpedia.org/resource/Michigan> . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape} | julipc-p(huggingface) |
Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:leaderName <http://dbpedia.org/resource/Sukhumbhand_Paribatra> . ?uri onto:founder <http://dbpedia.org/resource/Rama_I> . ?uri rdf:type onto:AdministrativeRegion} | julipc-p(huggingface) |
Name the largest city of the country where the body of Amit Saigal was discovered? | 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/Amit_Saigal> onto:bodyDiscovered ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country} | julipc-p(huggingface) |
Who founded the city where First Church of Christ, Scientist is located? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> prop:locationTown ?x . ?x onto:founder ?uri . } | julipc-p(huggingface) |
Los Angeles Lakers is the team of which basketball players? | 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:team <http://dbpedia.org/resource/Los_Angeles_Lakers> . ?uri rdf:type onto:BasketballPlayer} | julipc-p(huggingface) |
What are the movies produced by Michael Deeley? | 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 rdf:type onto:Film} | julipc-p(huggingface) |
Where is the headquarter of Regional Transit Authority of Southeast Michigan ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Regional_Transit_Authority_of_Southeast_Michigan prop:headquarters ?uri } | julipc-p(huggingface) |
What are the awards won by the parent of Daniel Bergmans? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Daniel_Bergman onto:parent ?x . ?x prop:awards ?uri . } | julipc-p(huggingface) |
Collect and return a list of things in the area where Spanish language is used? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:language res:Spanish_language . ?uri onto:location ?x . } | julipc-p(huggingface) |
Where is Hafthor Julius Bjornsson from? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Hafthór_Júlíus_Björnsson onto:stateOfOrigin ?uri } | julipc-p(huggingface) |
What writers have nationality as Statelessness? | 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:nationality <http://dbpedia.org/resource/Statelessness> . ?uri rdf:type onto:Writer} | julipc-p(huggingface) |
Music for what was made by someone who died of a cardiovascular disease? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:deathCause res:Cardiovascular_disease . ?uri prop:music ?x . } | julipc-p(huggingface) |
What famous musicians play the remo? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:instrument <http://dbpedia.org/resource/Remo> . ?uri rdf:type onto:MusicalArtist} | julipc-p(huggingface) |
Name the music artist which collaborated with the spouse of Jessi Colter? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:spouse <http://dbpedia.org/resource/Jessi_Colter> . ?uri onto:associatedMusicalArtist ?x . ?uri rdf:type onto:MusicalArtist} | julipc-p(huggingface) |
Does Lousana lie at the end of Alberta Highway 42? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Alberta_Highway_42 onto:routeEnd res:Lousana . } | julipc-p(huggingface) |
Count the number of sports played by the universities whose one of the sports is baketball ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics <http://dbpedia.org/resource/Basketball> . ?x prop:athletics ?uri } | julipc-p(huggingface) |
Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:John_Robert_Woodyard . ?uri prop:prizes res:Lovelace_Medal . } | julipc-p(huggingface) |
Which television shows has sound format as 5.1 surround? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:format <http://dbpedia.org/resource/5.1_surround_sound> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Who is the producer of the single which was the subsequent work of He's a Liar? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> onto:subsequentWork ?x . ?x onto:producer ?uri . } | julipc-p(huggingface) |
List the people who influenced the comedian who acted in Good Hair ? | 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/Good_Hair> prop:starring ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Comedian} | julipc-p(huggingface) |
To what other locations does the airlines have flights, who also fly to Birmingham? | 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/Birmingham_Airport> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline} | julipc-p(huggingface) |
Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | 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 onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri rdf:type ont... | julipc-p(huggingface) |
In how many places has Garbage recorded their songs? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:producer <http://dbpedia.org/resource/Garbage_(band)> . ?x onto:recordedIn ?uri . } | julipc-p(huggingface) |
How many cars can I find related to the cars which have a V8 engine? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:engine <http://dbpedia.org/resource/V8_engine> . ?x prop:related ?uri . } | julipc-p(huggingface) |
What products do US companies make? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:location <http://dbpedia.org/resource/United_States> . ?x onto:product ?uri . ?x rdf:type onto:Company} | julipc-p(huggingface) |
How many characters are there in The Office? | 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:series <http://dbpedia.org/resource/The_Office_(U.S._TV_series)> . ?uri rdf:type onto:FictionalCharacter} | julipc-p(huggingface) |
Who first ascented a mountain of Mount Hoffmann ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Mount_Hoffmann onto:firstAscentPerson ?uri } | julipc-p(huggingface) |
Which science fiction show has Steven Moffat as executive producer ? | 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:executiveProducer <http://dbpedia.org/resource/Steven_Moffat> . ?uri prop:genre <http://dbpedia.org/resource/Science_fiction> . ?uri rdf... | julipc-p(huggingface) |
Who all play for the teams performing in the united center? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:arena res:United_Center . ?uri prop:team ?x . } | julipc-p(huggingface) |
How many parties have come in power in elections where Y. S. Rajasekhara Reddy won? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leader <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x onto:affiliation ?uri . } | julipc-p(huggingface) |
Where did Wallace Dollase die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Wallace_Dollase onto:deathPlace ?uri . } | julipc-p(huggingface) |
In which state is Red Willow Creek? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Red_Willow_Creek onto:state ?uri } | julipc-p(huggingface) |
Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Amalgamated_Clothing_Workers_of_America onto:affiliation ?x . ?x prop:founded ?uri . } | julipc-p(huggingface) |
Who operates the railway line which begins in Minneapolis? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:routeStart <http://dbpedia.org/resource/Minneapolis> . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine} | julipc-p(huggingface) |
What is the nation of the speedway league where Ikaros Smederna played? | 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/Ikaros_Smederna> onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SpeedwayLeague} | julipc-p(huggingface) |
How many non fiction topics does Thud! deals with? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri . } | julipc-p(huggingface) |
Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> onto:routeStart ?uri. <http://dbpedia.org/resource/2011–12_FC_Spartak_Moscow_season> onto:homeStadium ?uri} | julipc-p(huggingface) |
Which party of Rishang Keishing is the leader at Manendragarh ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Manendragarh onto:leaderName ?uri. res:Rishang_Keishing prop:party ?uri} | julipc-p(huggingface) |
How many people were in a youthclub which played in the Argentine Primera Division? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league <http://dbpedia.org/resource/Argentine_Primera_División> . ?uri prop:youthclubs ?x . } | julipc-p(huggingface) |
What is the home town of the musician of Jack your Body ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jack_Your_Body onto:musicalArtist ?x . ?x onto:hometown ?uri . } | julipc-p(huggingface) |
In which branch of the government does James L. McConaughy belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:James_L._McConaughy onto:governor ?x . ?x prop:branch ?uri . } | julipc-p(huggingface) |
in which country does the river end which originates 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:mouthCountry ?uri . } | julipc-p(huggingface) |
Where did Andy Wyant die and Robert Rodi was born in? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Robert_Rodi onto:birthPlace ?uri. res:Andy_Wyant prop:placeOfDeath ?uri} | julipc-p(huggingface) |
Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)? | 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:constituency <http://dbpedia.org/resource/Duboce_Triangle,_San_Francisco> . ?uri onto:militaryUnit <http://dbpedia.org/resource/USS_Kitt... | julipc-p(huggingface) |
What is the occupation of the band members of The Shirelles? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist res:The_Shirelles . ?x onto:occupation ?uri . } | julipc-p(huggingface) |
Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines? | 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:formerTeam <http://dbpedia.org/resource/Indianapolis_Colts> . ?uri prop:currentteam <http://dbpedia.org/resource/Michigan_Wolverines> . ... | julipc-p(huggingface) |
List the mountains of the range Sierra Nevada (U.S.) located in California? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:locatedInArea <http://dbpedia.org/resource/California> . ?uri rdf:type onto:Mountain} | julipc-p(huggingface) |
List the television shows whose distributors are located at Burbank, California. | 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:locationCity <http://dbpedia.org/resource/Burbank,_California> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
What is the common relegion of Miao people and the country where Guru Purnima is celebrated ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Miao_people onto:religion ?uri. res:Guru_Purnima onto:country ?uri} | julipc-p(huggingface) |
What kind of buildings were designed by Pyusawhti? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:architect <http://dbpedia.org/resource/Pyusawhti> . ?x onto:type ?uri . ?x rdf:type onto:Building} | julipc-p(huggingface) |
What is the owning company of the bank whose parent is Sony Financial ? | 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:parent <http://dbpedia.org/resource/Sony_Financial> . ?x onto:owningCompany ?uri . ?x rdf:type onto:Company} | julipc-p(huggingface) |
What are some gymnasts coached by Amanda Reddin? | 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:headcoach <http://dbpedia.org/resource/Amanda_Reddin> . ?uri rdf:type onto:Gymnast} | julipc-p(huggingface) |
Katharevousa writers have been given which awards? | 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:movement <http://dbpedia.org/resource/Katharevousa> . ?x onto:award ?uri . ?x rdf:type onto:Writer} | julipc-p(huggingface) |
What are some mammals whose phylum is Chordate? | 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:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal} | julipc-p(huggingface) |
How many developers have worked on games of the Oddworld series? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:series <http://dbpedia.org/resource/Oddworld> . ?x onto:developer ?uri . } | julipc-p(huggingface) |
Name the home ground of 2015 Fort Lauderdale Strikers season ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:2015_Fort_Lauderdale_Strikers_season onto:ground ?uri } | julipc-p(huggingface) |
Which video game composed by Hirokazu Tanaka can be played on virtual Console ? | 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:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri prop:composer <http://dbpedia.org/resource/Hirokazu_Tanaka> . ?ur... | julipc-p(huggingface) |
What is the resting place of the engineer who was the architect of Plaza on DeWitt? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Plaza_on_DeWitt onto:architect ?x . ?x onto:restingPlace ?uri . } | julipc-p(huggingface) |
How many tenants are there in the Mercedes Benz Superdome? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> onto:tenant ?uri . } | julipc-p(huggingface) |
What is the affiliation of the hospital where Alfred Blalock works? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Alfred_Blalock prop:workInstitutions ?x . ?x prop:affiliation ?uri . } | julipc-p(huggingface) |
How many genres gave birth to other genres which emphasize Bass Guitars? | 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:instruments <http://dbpedia.org/resource/Bass_guitar> . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre} | julipc-p(huggingface) |
How many bands began in Birmingham? | 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:origin <http://dbpedia.org/resource/Birmingham> . ?uri rdf:type onto:Band} | julipc-p(huggingface) |
Where does the river end which starts in Richmond Park? | 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:sourcePlace <http://dbpedia.org/resource/Richmond_Park> . ?x prop:mouthLocation ?uri . ?x rdf:type onto:Stream} | julipc-p(huggingface) |
How many causes of death have been associated with American citizens? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:citizenship <http://dbpedia.org/resource/United_States> . ?x onto:deathCause ?uri . } | julipc-p(huggingface) |
Louis Dunbar is the coach of which basketball team ? | 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:coach <http://dbpedia.org/resource/Louis_Dunbar> . ?uri rdf:type onto:BasketballTeam} | julipc-p(huggingface) |
Charles Willing Byrd was the governor under which politician? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:governor res:Charles_Willing_Byrd } | julipc-p(huggingface) |
For how many teams have the league players of Czech Extraliga, previously played? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league <http://dbpedia.org/resource/Czech_Extraliga> . ?x onto:formerTeam ?uri . } | julipc-p(huggingface) |
Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork <http://dbpedia.org/resource/Frasier> . ?uri onto:openingTheme <http://dbpedia.org/resource/Gary_Portnoy> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Count the number of sports played by university which also plays Taekwondo ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics <http://dbpedia.org/resource/Taekwondo> . ?x prop:athletics ?uri } | julipc-p(huggingface) |
What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> onto:service ?uri. <http://dbpedia.org/resource/José_Rivera_(playwright)> prop:awards ?uri} | julipc-p(huggingface) |
Which football players currently have their contracts with Stoke City F.C.? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:currentclub <http://dbpedia.org/resource/Stoke_City_F.C.> } | julipc-p(huggingface) |
What are the cities around the sea which flows into the Atlantic? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:inflow <http://dbpedia.org/resource/Atlantic_Ocean> . ?x prop:cities ?uri . ?x rdf:type onto:Sea} | julipc-p(huggingface) |
Artists trained at art students league NY are buried where? | 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/Art_Students_League_of_New_York> . ?x onto:restingPlace ?uri . ?x rdf:type onto:Artist} | julipc-p(huggingface) |
What is the municipality of Liberty Bell ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Liberty_Bell onto:municipality ?uri } | julipc-p(huggingface) |
Who is the owner of Bloomberg L.P. ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomberg_L.P.> prop:owner ?uri } | julipc-p(huggingface) |
What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 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/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> onto:bronzeMedalist ?x . ?x prop:deathPlace ?uri . ?x rdf:... | julipc-p(huggingface) |
What is the debut team of the american football player who studied in North Fort Myers High School? | 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:highschool <http://dbpedia.org/resource/North_Fort_Myers_High_School> . ?x prop:debutteam ?uri . ?x rdf:type onto:AmericanFootballPlayer} | julipc-p(huggingface) |
In which races did Mouse Morris take part? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Mouse_Morris prop:race ?uri } | julipc-p(huggingface) |
Who are the writers of South Park: The Stick of Truth? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:South_Park:_The_Stick_of_Truth prop:writer ?uri } | julipc-p(huggingface) |
What is the leading party in Baraily which Chandra Shekhar too is associated with? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Chandra_Shekhar onto:otherParty ?uri} | julipc-p(huggingface) |
Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:series <http://dbpedia.org/resource/Terminator_(franchise)> . ?uri onto:portrayer <http://dbpedia.org/resource/Terminator_2:_Judgment_Day> . ?uri rdf:type onto:FictionalCharacter} | julipc-p(huggingface) |
List the trainers of Shinya Aoki ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Shinya_Aoki onto:trainer ?uri } | julipc-p(huggingface) |
What do typically NGOs work for? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:type <http://dbpedia.org/resource/Non-governmental_organization> . ?x prop:purpose ?uri . } | julipc-p(huggingface) |
What does the river end on whose border we find in Bjelasnica? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:border res:Bjelašnica . ?x onto:mouthCountry ?uri . } | julipc-p(huggingface) |
List few schools situated in Reading, Berkshire ? | 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:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri rdf:type onto:School} | julipc-p(huggingface) |
Who preceded Lucius Crus as an office holder? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:predecessor <http://dbpedia.org/resource/Lucius_Cornelius_Lentulus_Crus> . ?uri rdf:type onto:OfficeHolder} | julipc-p(huggingface) |
How many universities participate in the NCAA Division I Football Bowl Subdivision? | 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:athletics <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri rdf:type onto:University} | julipc-p(huggingface) |
Where is the senator from whose successor was James belford? | 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:successor <http://dbpedia.org/resource/James_B._Belford> . ?x onto:region ?uri . ?x rdf:type onto:Senator} | julipc-p(huggingface) |
What is the state of origin of Thomas Pfyl ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Thomas_Pfyl onto:stateOfOrigin ?uri } | julipc-p(huggingface) |
What is the nationality of the successor of Nii Okaidja Adamafio ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Nii_Okaija_Adamafio prop:successor ?x . ?x onto:nationality ?uri . } | julipc-p(huggingface) |
By which university is the literary magazine named Stone Canoe published? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Stone_Canoe onto:publisher ?uri } | julipc-p(huggingface) |
Give me a count of companies located in Texas ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locationCity <http://dbpedia.org/resource/Texas> . ?uri rdf:type onto:Company} | julipc-p(huggingface) |
Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:product <http://dbpedia.org/resource/Pixar_Image_Computer> . ?uri onto:keyPerson <http://dbpedia.org/resource/Edwin_Catmull> . ?uri rdf:type onto:Company} | julipc-p(huggingface) |
Who is the cover artist of Doctor Mirabilis (novel) ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Mirabilis_(novel)> prop:coverArtist ?uri } | julipc-p(huggingface) |
list some shawnee people? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:nationality res:Shawnee } | julipc-p(huggingface) |
Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:predecessor <http://dbpedia.org/resource/Henry_E._Catto,_Jr.> . ?uri prop:successor <http://dbpedia.org/resource/Adrian_A._Basora> . ?ur... | julipc-p(huggingface) |
Who is the common prime minster of William Deaner and mark Latham ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_Deane onto:primeMinister ?uri. res:Mark_Latham prop:primeminister ?uri} | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.