question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
How many people used to play for Toronto Argonauts?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:formerTeam <http://dbpedia.org/resource/Toronto_Argonauts> . }
julipc-p(huggingface)
How many different people have been in any political seat in places which are under the Indian Standard timezone?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:timeZone <http://dbpedia.org/resource/Indian_Standard_Time> . ?x onto:leaderName ?uri . }
julipc-p(huggingface)
The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:league <http://dbpedia.org/resource/American_Basketball_League_(1996–98)> . ?x onto:stadium ?uri . ?x rdf:type onto:SportsTeam}
julipc-p(huggingface)
What is the national origin of Dornier Aerodyne and Hirth Acrostar ?;
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Dornier_Aerodyne prop:nationalOrigin ?uri. res:Hirth_Acrostar onto:origin ?uri}
julipc-p(huggingface)
Count the tenants of the stadiums owned by toronto.
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:owner <http://dbpedia.org/resource/Toronto> . ?x prop:tenants ?uri . }
julipc-p(huggingface)
Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:relation <http://dbpedia.org/resource/Clinton_family> . ?uri onto:lieutenant <http://dbpedia.org/resource/Winston_Bryant> . ?uri rdf:type onto:President}
julipc-p(huggingface)
What is the fictional character whose voice over is done by the animator of Dick Lundy ?
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:animator <http://dbpedia.org/resource/Dick_Lundy_(animator)> . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}
julipc-p(huggingface)
How many sports are played in organizations presided by Emanuel de Guzman?
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:president <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}
julipc-p(huggingface)
What are the home stadiums of the things Leonid Fedun has been the chairman of?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:chairman res:Leonid_Fedun . ?x onto:homeStadium ?uri . }
julipc-p(huggingface)
Which region of English American is also the palce of Death of Brent Darby ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:English_Americans prop:region ?uri. res:Brent_Darby prop:placeOfDeath ?uri}
julipc-p(huggingface)
Who acted in the work written by Colin Brake?
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:writer <http://dbpedia.org/resource/Colin_Brake> . ?x prop:starring ?uri . ?x rdf:type onto:Work}
julipc-p(huggingface)
List everything written in languages developed by EXperimental Computing Facility?
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:author <http://dbpedia.org/resource/EXperimental_Computing_Facility> . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Work}
julipc-p(huggingface)
What are some movies whose score is composed by relatives of Bodhi Elfman?
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:relatives <http://dbpedia.org/resource/Bodhi_Elfman> . ?uri prop:music ?x . ?uri rdf:type onto:Film}
julipc-p(huggingface)
List the series of the books whose author is K. W. Jeter.
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:author <http://dbpedia.org/resource/K._W._Jeter> . ?x onto:series ?uri . ?x rdf:type onto:Book}
julipc-p(huggingface)
What is the common university iof vanderbilt Commodores and also the college of hubert Wiggs ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri. res:Hubert_Wiggs onto:college ?uri}
julipc-p(huggingface)
What are the prizes awarded to the main members of DisneyToon Studios?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:DisneyToon_Studios onto:keyPerson ?x . ?x onto:award ?uri . }
julipc-p(huggingface)
How many sports are played at the university whose president is Emanuel de Guzman?
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:president <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}
julipc-p(huggingface)
Give me the count of interests of the philosopher whose primary interest is Metaphysics ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests <http://dbpedia.org/resource/Metaphysics> . ?x prop:mainInterests ?uri }
julipc-p(huggingface)
Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:battle <http://dbpedia.org/resource/Benedict_Arnold's_expedition_to_Quebec> . ?uri prop:placeofburial <http://dbpedia.org/resource/St_Mary's_Church,_Battersea> . }
julipc-p(huggingface)
On which subjects does the author of the novel Thud! delve?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri }
julipc-p(huggingface)
Name the people living in a place governed by William W Brien?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:William_W._Brien . ?uri onto:residence ?x . }
julipc-p(huggingface)
Name the river whose source is located in Ikelenge District and mouth in Mozambique?
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:sourceLocation <http://dbpedia.org/resource/Ikelenge_District> . ?uri prop:mouthCountry <http://dbpedia.org/resource/Mozambique> . ?uri ...
julipc-p(huggingface)
How many people won the Gold Medal of the Royal Astronomical Society?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:prizes <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }
julipc-p(huggingface)
What are the relatives of the parliament member whose successor is Peter Thorneycroft?
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/Peter_Thorneycroft> . ?x onto:relation ?uri . ?x rdf:type onto:MemberOfParliament}
julipc-p(huggingface)
Which river's source country is Zambia and mouth country is Mozambique?
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:sourceCountry <http://dbpedia.org/resource/Zambia> . ?uri prop:mouthCountry <http://dbpedia.org/resource/Mozambique> . ?uri rdf:type ont...
julipc-p(huggingface)
How many members are there of the order of Bacillales?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order <http://dbpedia.org/resource/Bacillales> . }
julipc-p(huggingface)
Which program was on NBC network with executive producer as Glen and Les Charles?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:network <http://dbpedia.org/resource/NBC> . ?uri onto:executiveProducer <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Moscow-Kazan high speed railway starts from which station?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> onto:routeStart ?uri }
julipc-p(huggingface)
Which neighboring municipalities of Cologny has a mayor named Ester Alder ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . ?uri onto:mayor res:Esther_Alder . }
julipc-p(huggingface)
How many people work in the Massachusetts house of Representatives?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:office <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }
julipc-p(huggingface)
Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership ?uri }
julipc-p(huggingface)
Count the number of religions followed by Janta Dal members.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party <http://dbpedia.org/resource/Janata_Dal> . ?x onto:religion ?uri . }
julipc-p(huggingface)
Who is the founder of Wuropean School, Karlsruhe ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_School,_Karlsruhe> prop:founder ?uri }
julipc-p(huggingface)
Which football team is in a city where A J Clark was a builder?
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:builder <http://dbpedia.org/resource/A._James_Clark> . ?uri prop:city ?x . ?uri rdf:type onto:AmericanFootballTeam}
julipc-p(huggingface)
Which city near to Elliott Bay was the death place of George F. Moore ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> onto:nearestCity ?uri. <http://dbpedia.org/resource/George_F._Moore_(lieutenant_governor)> prop:placeOfDeath ?uri}
julipc-p(huggingface)
Through which label has Katy B released her singles?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:writer <http://dbpedia.org/resource/Katy_B> . ?x onto:recordLabel ?uri . ?x rdf:type onto:Single}
julipc-p(huggingface)
List the teams for which Bobby Hoppe played ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bobby_Hoppe prop:pastteams ?uri }
julipc-p(huggingface)
How many other characters are there of the plays which has a characters name Joker (comics) ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters <http://dbpedia.org/resource/Joker_(comics)> . ?x prop:characters ?uri }
julipc-p(huggingface)
Who first ascented a mountain of Cathedral Peak (California) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> onto:firstAscentPerson ?uri }
julipc-p(huggingface)
Which awards did the children of Erik Bergman won ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> prop:children ?x . ?x prop:awards ?uri . }
julipc-p(huggingface)
Name the sharehoders of The National Herald ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_National_Herald_(India)> onto:owner ?uri }
julipc-p(huggingface)
Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Streetcar_Named_Desire_(play)> prop:writer ?uri. <http://dbpedia.org/resource/The_Catastrophe_of_Success> onto:author ?uri}
julipc-p(huggingface)
How many people are buried in the Mausoleum of Augustus?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }
julipc-p(huggingface)
What are some famous works of the writer of The Second Coming?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> prop:writer ?x . ?x prop:notableworks ?uri . }
julipc-p(huggingface)
List the program genres of the sister stations of 97.1 WASH FM?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WASH_(FM)> prop:sisterStations ?x . ?x onto:programmeFormat ?uri . }
julipc-p(huggingface)
Which team's players have played in the national hockey league?
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:league <http://dbpedia.org/resource/National_Hockey_League> . ?x onto:team ?uri . ?x rdf:type onto:Athlete}
julipc-p(huggingface)
Which associated band of the Teddy Riley is also the performer of the Before I Let You Go?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Teddy_Riley onto:associatedBand ?uri. res:Before_I_Let_You_Go onto:musicalArtist ?uri}
julipc-p(huggingface)
Where was James McClure born ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> prop:birthPlace ?uri }
julipc-p(huggingface)
Who is the operator of AT&T Park ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AT&T_Park> prop:operator ?uri }
julipc-p(huggingface)
Whose music composer is signed up with Sony Music Entertainment?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:label res:Sony_Music_Entertainment . ?uri onto:musicComposer ?x . }
julipc-p(huggingface)
In which company is Raymond Conner at an important position?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:keyPerson res:Raymond_Conner }
julipc-p(huggingface)
Who hold stocks in the bank which is located at 731 Lexington Avenue?
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:locationCity <http://dbpedia.org/resource/731_Lexington_Avenue> . ?x prop:owner ?uri . ?x rdf:type onto:Bank}
julipc-p(huggingface)
Which labels signs up progressive rock bands?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:genre <http://dbpedia.org/resource/Progressive_rock> . ?x onto:recordLabel ?uri . ?x rdf:type onto:MusicalArtist}
julipc-p(huggingface)
Where does the railway tracks start, which ends in Kazan?
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/Kazan> . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}
julipc-p(huggingface)
Name the branch of Carroll E. Lanier ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Carroll_E._Lanier prop:branch ?uri }
julipc-p(huggingface)
what are some devices made by asus?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer <http://dbpedia.org/resource/Asus> . ?uri rdf:type onto:InformationAppliance}
julipc-p(huggingface)
Which former team of Franois Beauchemin does the Nathan Dempsey played for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Nathan_Dempsey prop:playedFor ?uri. res:François_Beauchemin onto:formerTeam ?uri}
julipc-p(huggingface)
What is the colour of Red Marauder ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Red_Marauder onto:colour ?uri }
julipc-p(huggingface)
What is the draft team of Dale Mitchell (ice hockey) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dale_Mitchell_(ice_hockey)> onto:draftTeam ?uri }
julipc-p(huggingface)
Give me a count of schools in Reading, Berkshire?
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:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri rdf:type onto:School}
julipc-p(huggingface)
Who are some cofounders of record labels with Frank Rogers?
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:foundedBy <http://dbpedia.org/resource/Frank_Rogers_(record_producer)> . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}
julipc-p(huggingface)
By whom is the broadcaster network Bounce TV founded?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bounce_TV onto:foundedBy ?uri }
julipc-p(huggingface)
Who is the scientist whose doctoral student is Erich Bagge?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent <http://dbpedia.org/resource/Erich_Bagge> . ?uri rdf:type onto:Scientist}
julipc-p(huggingface)
Who appointed the successor of Thomas Bee?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Thomas_Bee onto:successor ?x . ?x prop:appointer ?uri . }
julipc-p(huggingface)
List books authored by Miguel de Cervantes and published by Francisco de Robles ?
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:author <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri onto:publisher <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri ...
julipc-p(huggingface)
List down all notable works of Neil Cross ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri }
julipc-p(huggingface)
What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Buckhurst_Hill_County_High_School> onto:localAuthority ?uri. <http://dbpedia.org/resource/Sarah_Champion_(presenter)> prop:birthPlace ?uri}
julipc-p(huggingface)
what awards have been giving to Muhammad Yunus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Muhammad_Yunus onto:award ?uri }
julipc-p(huggingface)
Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> prop:meaning ?uri. <http://dbpedia.org/resource/The_Prodigal_Son_(play)> prop:subject ?uri}
julipc-p(huggingface)
Who are the parent of the people that has POD as Redding, Connecticut ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Redding,_Connecticut> . ?x onto:parent ?uri . }
julipc-p(huggingface)
What are the things Eric Schiller known for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri }
julipc-p(huggingface)
List the parts of Greater San Antonio?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Greater_San_Antonio onto:part ?uri }
julipc-p(huggingface)
Where is Temenos Group founded ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri }
julipc-p(huggingface)
Name some leaders of the parent organisation of the Gestapo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Gestapo onto:parentOrganisation ?x . ?x onto:leader ?uri . }
julipc-p(huggingface)
How many venues are located in the US?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:address <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:Venue}
julipc-p(huggingface)
What are some neighboring cities of cologny?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . }
julipc-p(huggingface)
What religion is Kabir Suman from?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:birthName res:Kabir_Suman . ?x prop:religion ?uri . }
julipc-p(huggingface)
Who are the people who died in a place architected by Jens Jensen
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/Jens_Jensen_(landscape_architect)> . ?uri onto:deathPlace ?x . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?
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/Where_Everybody_Knows_Your_Name> . ?uri rdf:type onto:TelevisionShow}
julipc-p(huggingface)
Name the television show whose company is HBO and Playtone?
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:company <http://dbpedia.org/resource/Playtone> . ?uri rdf:type onto:TelevisionShow...
julipc-p(huggingface)
Name the cover artist of the adventure of Tom sawyer ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri }
julipc-p(huggingface)
Who did Bruce Bochy play for ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bruce_Bochy onto:team ?uri }
julipc-p(huggingface)
Name the company which provides Outlook.com as service and also has a product named Microsoft Azure ?
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:services <http://dbpedia.org/resource/Outlook.com> . ?uri onto:product <http://dbpedia.org/resource/Microsoft_Azure> . ?uri rdf:type ont...
julipc-p(huggingface)
Name the company with product named Microsft Azure and provides OneDrive as a service ?
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:product <http://dbpedia.org/resource/Microsoft_Azure> . ?uri prop:services <http://dbpedia.org/resource/OneDrive> . ?uri rdf:type onto:C...
julipc-p(huggingface)
What is the Band whose band member is Mark Middleton?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mark_Middleton }
julipc-p(huggingface)
List the actors of Lucy Sullivan Is Getting Married?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lucy_Sullivan_Is_Getting_Married prop:starring ?uri }
julipc-p(huggingface)
How many people have worked in the band one of whose current member is Hynief?
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:currentMembers <http://dbpedia.org/resource/Hynief> . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Enumerate all those who are in the Board of companies founded in New York?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation <http://dbpedia.org/resource/New_York> . ?uri onto:board ?x . }
julipc-p(huggingface)
Name the awards that have been given to the writer made famous for Creature Comforts?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:notableWork <http://dbpedia.org/resource/Creature_Comforts> . ?x onto:award ?uri . ?x rdf:type onto:Writer}
julipc-p(huggingface)
Murray Gold has composed music for how many things?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:composer <http://dbpedia.org/resource/Murray_Gold> . }
julipc-p(huggingface)
In which wars did Percy Fitzwallace fight?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Percy_Fitzwallace prop:battles ?uri }
julipc-p(huggingface)
What other awards have Becket fund for religious liberty winners received?
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:Becket_Fund_for_Religious_Liberty . ?x prop:awards ?uri . }
julipc-p(huggingface)
Who was the vice president under which elizabeth alexander served?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth_Alexander_(press_secretary)> onto:vicePresident ?uri . }
julipc-p(huggingface)
How many people have been presenters for NBC shows?
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:channel <http://dbpedia.org/resource/NBC> . ?x prop:presenter ?uri . ?uri rdf:type onto:Person}
julipc-p(huggingface)
Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?
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 prop:sourceLocation <http://dbpedia.org/resource/Ikelen...
julipc-p(huggingface)
Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri. res:Peter_Thorneycroft prop:primeminister ?uri}
julipc-p(huggingface)
Name the states which have been billed by the wrestlers who has also billed Georgia ?
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:billed <http://dbpedia.org/resource/Georgia_(U.S._state)> . ?x prop:billed ?uri . ?x rdf:type onto:Wrestler}
julipc-p(huggingface)
List the outflows of the lake whose one of the outflows is Benu river ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x onto:outflow ?uri . }
julipc-p(huggingface)
Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?
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:openingTheme <http://dbpedia.org/resource/Te_Deum_(Charpentier)> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Marc-Antoin...
julipc-p(huggingface)
Who produced wizards vs aliens?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri }
julipc-p(huggingface)