question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Who is the distributer of Rev ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rev_(drink)> prop:distributor ?uri } | julipc-p(huggingface) |
Which city was founded by George Washington and John Forbes (British Army officer)? | 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:founder <http://dbpedia.org/resource/George_Washington> . ?uri onto:founder <http://dbpedia.org/resource/John_Forbes_(British_Army_offic... | julipc-p(huggingface) |
What are the books written by authors who died in Madrid? | 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:restingPlace <http://dbpedia.org/resource/Madrid> . ?uri prop:author ?x . ?uri rdf:type onto:Book} | julipc-p(huggingface) |
What is father's name who also served in military of Carlene Carter? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:children res:Carlene_Carter . } | julipc-p(huggingface) |
Count the number of broadcast area of the TV stations which serves in Agalga ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea <http://dbpedia.org/resource/Agaléga> . ?x prop:broadcastArea ?uri } | julipc-p(huggingface) |
In which wars army men awarded with the Croix de Guerre, fought? | 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:awards <http://dbpedia.org/resource/Croix_de_guerre_1939–1945_(France)> . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson} | julipc-p(huggingface) |
Where is the residence of the governor of Bangkok ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Bangkok onto:leaderName ?x . ?x prop:residence ?uri . } | julipc-p(huggingface) |
Name the scientist whose supervisor was Ernest Rutherford and had a doctoral students named Charles Drummond Ellis? | 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:doctoralAdvisor <http://dbpedia.org/resource/Ernest_Rutherford> . ?uri prop:doctoralStudents <http://dbpedia.org/resource/Charles_Drummo... | julipc-p(huggingface) |
Name the movies writtten by the group Monty Python ? | 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:writer <http://dbpedia.org/resource/Monty_Python> . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Where is Lao Plaza Hotel located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Lao_Plaza_Hotel prop:developer ?uri } | julipc-p(huggingface) |
Which sitcom's company is Paramount Television and is located in Cheers Beacon 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 {?uri prop:company <http://dbpedia.org/resource/Paramount_Television> . ?uri prop:location <http://dbpedia.org/resource/Cheers_Beacon_Hill> . ?uri ... | julipc-p(huggingface) |
Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri} | julipc-p(huggingface) |
Which Tv series led to Frasier? | 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 rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
What is the profession of William Luther Hill ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri } | julipc-p(huggingface) |
Name all the hubs of the airlines whose one of the hubs is Selangir ? | 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:hubs <http://dbpedia.org/resource/Selangor> . ?x prop:hubs ?uri . ?x rdf:type onto:Airline} | julipc-p(huggingface) |
How many other school are there of the rugby players whose school is Michaelhouse ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school <http://dbpedia.org/resource/Michaelhouse> . ?x prop:school ?uri } | julipc-p(huggingface) |
What are the films whose atleast one cast member died due to Colorectal cancer? | 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:deathCause <http://dbpedia.org/resource/Colorectal_cancer> . ?uri prop:starring ?x . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Who is the President of United World College of Costa Rica ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri } | julipc-p(huggingface) |
Which city has it's landmark as Cheasty Boulevard South? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Cheasty_Boulevard_South onto:maintainedBy ?uri } | julipc-p(huggingface) |
List down the opponents of Frank Stilwell? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Frank_Stilwell onto:opponent ?uri } | julipc-p(huggingface) |
Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | 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:director <http://dbpedia.org/resource/Ridley_Scott> . ?uri onto:musicComposer <http://dbpedia.org/resource/Vangelis> . ?uri rdf:type ont... | julipc-p(huggingface) |
Where is Bogobiri House located ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Bogobiri_House prop:locationCity ?uri } | julipc-p(huggingface) |
What is the religion of the leader of South Korean legislative election of 1992 ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Korean_legislative_election,_1992> prop:leader ?x . ?x onto:religion ?uri . } | julipc-p(huggingface) |
Who is the writer of Neverwhere (radio play) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neverwhere_(radio_play)> onto:writer ?uri } | julipc-p(huggingface) |
How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople <http://dbpedia.org/resource/Hillary_Clinton> . ?x prop:keyPeople ?uri } | julipc-p(huggingface) |
List the stadium of the teams which uses Nea Smyrni as one of the stadium ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:stadium res:Nea_Smyrni_Stadium . ?x prop:stadium ?uri . } | julipc-p(huggingface) |
How many currencies are in used in places where people speak French? | 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:officialLanguage <http://dbpedia.org/resource/French_language> . ?x onto:currency ?uri . ?uri rdf:type onto:Currency} | julipc-p(huggingface) |
Which football managers managed Middlesbrough F.C.? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:managerClub <http://dbpedia.org/resource/Middlesbrough_F.C.> } | julipc-p(huggingface) |
Who are some american football players whose high school is Oktoc, Mississippi? | 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:highSchool <http://dbpedia.org/resource/Oktoc,_Mississippi> . ?uri rdf:type onto:AmericanFootballPlayer} | julipc-p(huggingface) |
Name the company founded in US and created Visual Studio ? | 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:foundation <http://dbpedia.org/resource/United_States> . ?uri prop:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?uri... | julipc-p(huggingface) |
How many factions were involved in the battles fought by Arthur St. Clair? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Arthur_St._Clair> prop:battles ?x . ?x prop:combatant ?uri . } | julipc-p(huggingface) |
Count the number of ingredient of the foods which have one of the ingredient is Pork ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient <http://dbpedia.org/resource/Pork> . ?x onto:ingredient ?uri } | julipc-p(huggingface) |
What is the television show whose opening theme is Te Deum (Charpentier)? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme <http://dbpedia.org/resource/Te_Deum_(Charpentier)> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
List the ideologies of the party of Boonchu Rojanastien? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Boonchu_Rojanastien prop:party ?x . ?x onto:ideology ?uri . } | julipc-p(huggingface) |
Who were the narrators of the albums which had Ringo Starr as one of the narrator ? | 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:narrated <http://dbpedia.org/resource/Ringo_Starr> . ?x prop:narrated ?uri . ?x rdf:type onto:Album} | julipc-p(huggingface) |
How many people have played for the ones who own the stadium of Bankers Life Fieldhouse? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:arena <http://dbpedia.org/resource/Bankers_Life_Fieldhouse> . ?uri prop:team ?x . } | julipc-p(huggingface) |
List the newspapers whose headquarters's time zone is Central European Summer Time. | 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:timeZone <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri prop:headquarters ?x . ?uri rdf:type onto:Newspaper} | julipc-p(huggingface) |
Where does the river end which starts in Mazabuka? | 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:city <http://dbpedia.org/resource/Mazabuka> . ?x onto:riverMouth ?uri . ?x rdf:type onto:River} | julipc-p(huggingface) |
Count all american football players whose former team owns Lucas Oil Stadium ? | 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:city <http://dbpedia.org/resource/Lucas_Oil_Stadium> . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer} | julipc-p(huggingface) |
What are the academic interests of the advisor of Paul Demiville ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville onto:academicAdvisor ?x . ?x prop:fields ?uri . } | julipc-p(huggingface) |
Which awards are presented by Swedish Academy? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Swedish_Academy> . ?uri rdf:type onto:Award} | julipc-p(huggingface) |
Name the university whose teams have been managed by Albertin Montoya? | 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/Albertin_Montoya> prop:managerclubs ?x . ?x onto:university ?uri . ?x rdf:type onto:SportsTeam} | julipc-p(huggingface) |
what are some journals of academic Philosophy | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:discipline res:Philosophy } | julipc-p(huggingface) |
Where did the conflict take place where Liu Mingchuan fought? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Liu_Mingchuan prop:battles ?x . ?x onto:territory ?uri . } | julipc-p(huggingface) |
Which rivers originate from Dowra? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Dowra } | julipc-p(huggingface) |
What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> onto:residence ?uri. <http://dbpedia.org/resource/John_McTaggart_(jockey)> onto:deathPlace ?uri} | julipc-p(huggingface) |
What is the military rank of the commanders of Regiment of Mounted Grenadiers? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Regiment_of_Mounted_Grenadiers prop:notableCommanders ?x . ?x onto:militaryRank ?uri . } | julipc-p(huggingface) |
To which series does the character of Londo Mollari belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Londo_Mollari onto:series ?uri } | julipc-p(huggingface) |
What company's leader is Edwin Catmull? | 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:keyPeople <http://dbpedia.org/resource/Edwin_Catmull> . ?uri rdf:type onto:Company} | julipc-p(huggingface) |
How many different layouts do cars designed by Oliver Boulay have? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer <http://dbpedia.org/resource/Olivier_Boulay> . ?x onto:layout ?uri . } | julipc-p(huggingface) |
Whihc state of Timothy J. Roemer is also the location city of Dad's Root Beer ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dad's_Root_Beer> prop:locationCity ?uri. <http://dbpedia.org/resource/Timothy_J._Roemer> prop:state ?uri} | julipc-p(huggingface) |
What is the type of Naval Station Bremerton ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Naval_Station_Bremerton prop:type ?uri } | julipc-p(huggingface) |
Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Bordesley_railway_station prop:borough ?uri. res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri} | julipc-p(huggingface) |
What are some movies written by British writers? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:nationality <http://dbpedia.org/resource/British_people> . ?uri onto:writer ?x . ?uri rdf:type onto:Film} | julipc-p(huggingface) |
Which university is led by Jay Gogue? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:president <http://dbpedia.org/resource/Jay_Gogue> . ?uri rdf:type onto:University} | julipc-p(huggingface) |
Count the number of artists who trained at the San Francisco Art Institute? | 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:training <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri rdf:type onto:Artist} | julipc-p(huggingface) |
What games can be played in schools founded by Fr. Orlando? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy <http://dbpedia.org/resource/Fr._Orlando> . ?x onto:sport ?uri . ?x rdf:type onto:School} | julipc-p(huggingface) |
List the leaders of the government agencies whose jurisdiction was German-occupied Europe. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction <http://dbpedia.org/resource/German-occupied_Europe> . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency} | julipc-p(huggingface) |
List the cast member of the movies whose producer is Mark Johnson. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:producer <http://dbpedia.org/resource/Mark_Johnson_(producer)> . ?x onto:starring ?uri . ?x rdf:type onto:Film} | julipc-p(huggingface) |
Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri. res:Jimmy_Diggs onto:birthPlace ?uri} | julipc-p(huggingface) |
Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight? | 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:predecessor <http://dbpedia.org/resource/Boeing_Vertol_CH-46_Sea_Knight> . ?uri prop:products ?x . ?uri rdf:type onto:Company} | julipc-p(huggingface) |
What is the birth place of music artists which were associated with Albert Ayler ? | 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/Albert_Ayler> prop:associatedActs ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:MusicalArtist} | julipc-p(huggingface) |
What is the religious affiliation of Wickramabahu Central College (National School) ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wickramabahu_Central_College_(National_School)> prop:religiousAffiliation ?uri } | julipc-p(huggingface) |
Name the nearest city to Lake Victoria? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Lake_Victoria onto:nearestCity ?uri } | julipc-p(huggingface) |
Where is the tombstone of Johannes Gerhardus Strijdom? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Johannes_Gerhardus_Strijdom prop:restingplace ?uri } | julipc-p(huggingface) |
What is the common award won by Charles LeMaire and Eric Roth | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Charles_LeMaire prop:awards ?uri. res:Eric_Roth onto:award ?uri} | julipc-p(huggingface) |
Was Gareth Southgate a manager of Middlesbrough F.C.? | PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { <http://dbpedia.org/resource/Gareth_Southgate> prop:managerclubs <http://dbpedia.org/resource/Middlesbrough_F.C.> } | julipc-p(huggingface) |
What is the total number of builder of the military structures whose builder is also United States? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder <http://dbpedia.org/resource/United_States> . ?x onto:builder ?uri } | julipc-p(huggingface) |
Tell me the total number of organizations who maintain the bridges made by the malaysian PWD? | 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:designer <http://dbpedia.org/resource/Malaysian_Public_Works_Department> . ?x onto:maintainedBy ?uri . ?uri rdf:type onto:Organisa... | julipc-p(huggingface) |
How many shows does HBO have? | 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:company <http://dbpedia.org/resource/HBO> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
How many people have been canonized by Pope Benedict XVI? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:canonizedBy <http://dbpedia.org/resource/Pope_Benedict_XVI> . } | julipc-p(huggingface) |
What party was in majority of Fourth Legislative Assembly of Delhi? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Fourth_Legislative_Assembly_of_Delhi prop:party ?uri } | julipc-p(huggingface) |
Bud Adams owns which american football team? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:owner <http://dbpedia.org/resource/Bud_Adams> . ?uri rdf:type onto:AmericanFootballTeam} | julipc-p(huggingface) |
Whose work is in the Musee d'orsay? | 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:museum <http://dbpedia.org/resource/Musée_d'Orsay> . ?x prop:artist ?uri . ?x rdf:type onto:Artwork} | julipc-p(huggingface) |
What are the famous Uni Toronto scientists known for? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:almaMater <http://dbpedia.org/resource/University_of_Toronto> . ?x onto:knownFor ?uri . ?x rdf:type onto:Scientist} | julipc-p(huggingface) |
Who used to skate with the pupils of Laureano Ibarra? | 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:coach <http://dbpedia.org/resource/Laureano_Ibarra> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater} | julipc-p(huggingface) |
How many books have been penned by Miguel de Cervantes? | 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:author <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri rdf:type onto:Book} | julipc-p(huggingface) |
Name the river flowing through Reading and source place as Gloucestershire ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:city <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri onto:sourcePlace <http://dbpedia.org/resource/Gloucestershire> . ?uri rdf:type onto:River} | julipc-p(huggingface) |
Count the band members of Skull Gang? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Skull_Gang> onto:bandMember ?uri . ?uri rdf:type onto:Person} | julipc-p(huggingface) |
In which teams have league members of the Czech Extraliga played previously? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:league res:Czech_Extraliga . ?x onto:formerTeam ?uri . } | julipc-p(huggingface) |
Which country's people have graduated from Ghana School of Law? | 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:almaMater <http://dbpedia.org/resource/Ghana_School_of_Law> . ?x onto:nationality ?uri . ?x rdf:type onto:Person} | julipc-p(huggingface) |
What does the river flow into, whose left tributary is Bukovica? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary <http://dbpedia.org/resource/Bukovica_(river)> . ?x onto:mouthCountry ?uri . } | julipc-p(huggingface) |
For which team does hunter pence play for? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Hunter_Pence onto:team ?uri } | julipc-p(huggingface) |
Name the ground of Al-Rayan SC ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al-Rayan_SC> onto:ground ?uri } | julipc-p(huggingface) |
In which cities were the chess grand masters born? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:title <http://dbpedia.org/resource/Grandmaster_(chess)> . ?x onto:birthPlace ?uri . } | julipc-p(huggingface) |
Which city's governing body is led by Bruce Harrell? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:leader res:Bruce_Harrell . ?uri prop:governingBody ?x . } | julipc-p(huggingface) |
What band was Afrika Baby Bam a part of, and often performed with Q Tip? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Afrika_Baby_Bam> onto:associatedBand ?uri. <http://dbpedia.org/resource/Q-Tip_(musician)> onto:associatedMusicalArtist ?uri} | julipc-p(huggingface) |
Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tennis_at_the_2012_Summer_Olympics_–_Men's_singles> onto:silverMedalist ?uri. <http://dbpedia.org/resource/Switzerland_at_the_2008_Summer_Olympics> prop:flagbearer ?uri} | julipc-p(huggingface) |
Who is the prime minister of the successor of Kingsley Wood? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Kingsley_Wood onto:successor ?x . ?x prop:primeminister ?uri . } | julipc-p(huggingface) |
List the common relegion affiliation of khadra Haji Ismail and Yasmin khatun ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Khadra_Haji_Ismail_Geid prop:religion ?uri. res:Yasmin_Khatun onto:religion ?uri} | julipc-p(huggingface) |
Where was Thomy Bourdelle born? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Thomy_Bourdelle prop:placeOfBirth ?uri . } | julipc-p(huggingface) |
How many bands are based in London? | 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:hometown <http://dbpedia.org/resource/London> . ?uri rdf:type onto:Band} | julipc-p(huggingface) |
Name few TV shows aired by Prime Time Entertainment Network? | 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/Prime_Time_Entertainment_Network> . ?uri rdf:type onto:TelevisionShow} | julipc-p(huggingface) |
Which president of Lance Adams-Schneider had nickname Daniel O'Regan ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lance_Adams-Schneider> prop:president ?uri. <http://dbpedia.org/resource/Daniel_O'Regan> prop:nickname ?uri} | julipc-p(huggingface) |
WHo gave the lyrcis of Doonesbury ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> onto:lyrics ?uri } | julipc-p(huggingface) |
Who coached the marquet golden eagels during 2013 | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2013–14_Marquette_Golden_Eagles_men's_basketball_team> onto:coach ?uri } | julipc-p(huggingface) |
Give me a list of computers whose CPU is 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 ?uri WHERE { ?x prop:locationCity <http://dbpedia.org/resource/United_States> . ?uri onto:cpu ?x . ?uri rdf:type onto:InformationAppliance} | julipc-p(huggingface) |
What is that something which made Breann McGregor famous, and Frank Thorne received as an award? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Frank_Thorne onto:award ?uri. res:Breann_McGregor prop:knownFor ?uri} | julipc-p(huggingface) |
Which things have been located, where governance is Houston City Council? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:Houston_City_Council . ?uri onto:location ?x . } | julipc-p(huggingface) |
What beverages originate in Leuven? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:origin <http://dbpedia.org/resource/Leuven> . ?uri rdf:type onto:Beverage} | julipc-p(huggingface) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.