question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which company is located in Harris County, Texas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:locationCity <http://dbpedia.org/resource/Harris_County,_Texas> . ?uri rdf:type onto:Company}
Orange(huggingface)
Where was pina Records founded which has also the name of Geography of Puerto Rico?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Geography_of_Puerto_Rico prop:name ?uri. res:Pina_Records prop:founded ?uri}
Orange(huggingface)
Who is a famous relative of Aaround Van Heemstra?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:relative <http://dbpedia.org/resource/Aarnoud_van_Heemstra> . ?uri rdf:type onto:Person}
Orange(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 res: <http://dbpedia.org/resource/> 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:main...
Orange(huggingface)
What famous work is derived from the one whose lyrics are written by Inma Gonzales?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:lyrics res:Inma_González . ?x onto:basedOn ?uri . }
Orange(huggingface)
Where is the football team located in which Josh Bell did his debut?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josh_Bell_(gridiron_football)> onto:debutTeam ?x . ?x onto:locationCity ?uri . }
Orange(huggingface)
List all the locations of the companies whose are also located in Rancho Cucamonga, California ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry <http://dbpedia.org/resource/Rancho_Cucamonga,_California> . ?x onto:locationC...
Orange(huggingface)
Who is the architect of Red House, London?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_House,_London> prop:architect ?uri }
Orange(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 res: <http://dbpedia.org/resource/> 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}
Orange(huggingface)
List few authors whose education took place in Saint Petersburg ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:education <http://dbpedia.org/resource/Saint_Petersburg> . ?uri rdf:type onto:Writer}
Orange(huggingface)
who are the managers of england national under 20 football team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs <http://dbpedia.org/resource/England_national_under-20_football_team> }
Orange(huggingface)
What are the albums whose artists have performed with the Tangerine Dream?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand <http://dbpedia.org/resource/Tangerine_Dream> . ?uri prop:artist ?x . ?uri rdf:...
Orange(huggingface)
Which countries militaries fought the SFOR battle?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:battles <http://dbpedia.org/resource/SFOR> . ?x onto:battle ?uri . ?x rdf:type onto:MilitaryPe...
Orange(huggingface)
What are some rivers in Zambia which have a dam on them?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:country <http://dbpedia.org/resource/Zambia> . ?x onto:river ?uri . ?x rdf:type onto:Dam}
Orange(huggingface)
Name few television shows's anchored by Ryan Seacrest?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Badminton_at_the_2012_Summer_Olympics_–_Women's_doubles> onto:bronzeMed...
Orange(huggingface)
Which party does Iqbal Singh and B Shiva Rao currently belong to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Iqbal_Singh_(politician)> prop:party ?uri. <http://dbpedia.org/resource/B._Shiva_Rao> prop:party ?uri . }
Orange(huggingface)
How many people have written for Gangan Comics?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine <http://dbpedia.org/resource/Gangan_Comics> . ?x prop:author ?uri . }
Orange(huggingface)
Name some local authorities of schools which have a mixed gender education system?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:gender <http://dbpedia.org/resource/Mixed-sex_education> . ?x onto:localAuthority ?uri . ?x rdf:type onto:School}
Orange(huggingface)
Which artists trained in San Francisco Art Institute?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:training <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri rdf:type onto:Artis...
Orange(huggingface)
How many members are there of the organization headquartered at Amstelveen?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters <http://dbpedia.org/resource/Amstelveen> . ?x prop:membership ?uri . }
Orange(huggingface)
Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri onto:channel <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri r...
Orange(huggingface)
Count the number of religions followed by BJP members.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party <http://dbpedia.org/resource/Bharatiya_Janata_Party> . ?x onto:religion ?uri . }
Orange(huggingface)
What common relegion affiliation exists for udit Raj and Wickramabahu Central College ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Udit_Raj> onto:religion ?uri. <http://dbpedia.org/resource/Wickramabahu_Central_College_(National_School)> prop:religiousAffiliatio...
Orange(huggingface)
Name some shows whose company is owned by the CBS Corporation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owner <http://dbpedia.org/resource/CBS_Corporation> . ?uri prop:company ?x . ?uri rdf:type ont...
Orange(huggingface)
Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:knownFor <http://dbpedia.org/resource/Anthrax> . ?uri onto:academicAdvisor <http://dbpedia.org/resource/Karl_Ewald_Hasse> . ?uri rdf:type...
Orange(huggingface)
Did Timm Gunn guest in Sunrise (HIMYM)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Sunrise_(How_I_Met_Your_Mother)> prop:guests <http://dbpedia.org/resource/Tim_Gunn> }
Orange(huggingface)
Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:artist <http://dbpedia.org/resource/Hiroji_Kiyotake> . ?uri onto:computingPlatform <http://db...
Orange(huggingface)
Does chicago own the washington station on the CTA Blue Line?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Washington_station_(CTA_Blue_Line)> prop:owned <http://dbpedia.org/resource/Chicago> }
Orange(huggingface)
With which musical artist is the music group which sung Mind Blowin' related to ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mind_Blowin'_(Smooth_song)> onto:musicalArtist ?x . ?x onto:associatedMusicalArtist ?uri . }
Orange(huggingface)
In which movies has momoko kochi acted
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:starring res:Momoko_Kōchi }
Orange(huggingface)
Through how many labels has Katy B released her singles?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:writer <http://dbpedia.org/resource/Katy_B> . ?x onto:recordLabel ?uri . }
Orange(huggingface)
Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:artist <http://dbpedia.org/resource/Christopher_Franke> . ?uri onto:network <http://dbpedia.o...
Orange(huggingface)
What is the area of the Tar Heel Sports Network which is official residence of Michael Nichols (photographer)?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tar_Heel_Sports_Network> prop:area ?uri. <http://dbpedia.org/resource/Michael_Nichols_(photographer)> onto:residence ?uri}
Orange(huggingface)
Give me a count of movies distributed by Warner Bros?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor <http://dbpedia.org/resource/Warner_Bros.> . }
Orange(huggingface)
What are the television shows which are in NTSC and 5.1 surround sound?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:format <http://dbpedia.org/resource/NTSC> . ?uri onto:format <http://dbpedia.org/resource/5.1_surround_sound> . ?uri rdf:type onto:Telev...
Orange(huggingface)
In how many places are Marjas found?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:title <http://dbpedia.org/resource/Marja'> . ?x onto:location ?uri . ?uri rdf:type onto...
Orange(huggingface)
In which team was the person drafted who has studied at the Worcester college, Oxford?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:almaMater <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x prop:draftTeam ?uri . ?...
Orange(huggingface)
What are some dishes from the family of dishes which primarily use flour?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient <http://dbpedia.org/resource/Flour> . ?uri onto:type ?x . ?uri rdf:type onto:Fo...
Orange(huggingface)
Which sitcoms are made by a company headquartered in NYC?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:headquarter <http://dbpedia.org/resource/New_York_City> . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
Which religion do the people follow, whose constituency is Jadavpur?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:constituency <http://dbpedia.org/resource/Jadavpur_(Lok_Sabha_constituency)> . ?x prop:religio...
Orange(huggingface)
How many shows are made by Larry David?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator <http://dbpedia.org/resource/Larry_David> . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
Name the sharehoders of The National Herald?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_National_Herald_(India)> onto:owner ?uri }
Orange(huggingface)
Which city near to Elliott Bay was the death place of George F. Moore?
PREFIX res: <http://dbpedia.org/resource/> 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}
Orange(huggingface)
List the state of the universities whose nation is United States ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:country <http://dbpedia.org/resource/United_States> . ?x onto:state ?uri . ?x rdf:type onto:University}
Orange(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 res: <http://dbpedia.org/resource/> 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 . ?u...
Orange(huggingface)
How many producers have worked for FremantleMedia productions?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:company <http://dbpedia.org/resource/FremantleMedia> . ?x onto:producer ?uri . }
Orange(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}
Orange(huggingface)
What are the films where at least one cast member died due to colorectal cancer?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 <http://dbpedia.org/resource/Colorectal_cancer> . ?uri prop:starring ?x . ?uri rdf:...
Orange(huggingface)
What is the country whose administrative centre is Hagta, Guam?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:capital <http://dbpedia.org/resource/Hagåtña,_Guam> . ?uri rdf:type onto:Country}
Orange(huggingface)
What are some famous artists who rocked a Les Paul?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments <http://dbpedia.org/resource/Gibson_Les_Paul> . ?uri rdf:type onto:Musical...
Orange(huggingface)
Give me the count of artist in the company whose Artist is Jean- François Coté ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist <http://dbpedia.org/resource/Jean-François_Coté> . ?x prop:artist ?uri }
Orange(huggingface)
Who is associated with the musical artists from Africa '70 (band) and Tony Allen ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Africa_'70_(band)> . ?uri onto:associatedMusicalArtist <http://dbpedia.org/resource...
Orange(huggingface)
What are some shareholders of the bridge maintained by the Massachusetts department of transportation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:maintainedBy <http://dbpedia.org/resource/Massachusetts_Department_of_Transportation> . ?x pro...
Orange(huggingface)
What is the source country of reg Lake ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Üüreg_Lake onto:sourceCountry ?uri }
Orange(huggingface)
How many shows belong to the network one of whose sister station is Cartoonite?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sisterStation <http://dbpedia.org/resource/Cartoonito> . ?uri prop:network ?x . ?uri rd...
Orange(huggingface)
Which officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:restingplace <http://dbpedia.org/resource/North_Bend,_Ohio> . ?uri prop:branch <http://dbpedia.org/resource/Indiana_Territory> . }
Orange(huggingface)
List all the wine regions of the grapes whose one of the wine region is Mississippi ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion <http://dbpedia.org/resource/Mississippi> . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}
Orange(huggingface)
How many people played for Newell's Old Boys?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs <http://dbpedia.org/resource/Newell's_Old_Boys> . }
Orange(huggingface)
List the home town of the people who have Ontario as one of it ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:homeTown <http://dbpedia.org/resource/Ontario> . ?x prop:homeTown ?uri . ?x rdf:type onto:Pers...
Orange(huggingface)
Where were some people associated with Steve Winwood employed at?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist <http://dbpedia.org/resource/Steve_Winwood> . ?x onto:occupation ?uri . ?x rdf:type onto:Person}
Orange(huggingface)
Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri prop:children <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri prop:children <http://dbp...
Orange(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 res: <http://dbpedia.org/resource/> 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}
Orange(huggingface)
List the base currency of the country whose anthem is Oj, svijetla majska zoro.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:anthem <http://dbpedia.org/resource/Oj,_svijetla_majska_zoro> . ?x prop:currency ?uri . }
Orange(huggingface)
By what style was Providence Chapel, Charlwood made?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> prop:style ?uri }
Orange(huggingface)
How many honorary title are there of the scientists who has Australian of the Year award?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award <http://dbpedia.org/resource/Australian_of_the_Year> . ?x onto:award ?uri }
Orange(huggingface)
How many artists are signed up with Celluloid Records?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label <http://dbpedia.org/resource/Celluloid_Records> . }
Orange(huggingface)
Which home town of PAvel Moroz is the death location of the Yakov Estrin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Yakov_Estrin onto:deathPlace ?uri}
Orange(huggingface)
In how many different teams have all those who have played as a defenceman been?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position <http://dbpedia.org/resource/Defenceman> . ?x prop:playedFor ?uri . ?uri rdf:t...
Orange(huggingface)
WHich region of the Providence Chapel, Charlwood is also the region of the Joseph Case High School
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> prop:style ?uri. <http://dbpedia.org/resource/Joseph_Case_High_School> onto:region ?uri}
Orange(huggingface)
Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:products <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . ?uri onto:keyPerson <h...
Orange(huggingface)
Who appointed Joseph Clay and William Cushing to their office?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joseph_Clay_(Georgia)> onto:appointer ?uri. <http://dbpedia.org/resource/William_Cushing> onto:appointer ?uri . }
Orange(huggingface)
What are the movies whose director of photography is Jordan Cronenweth?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:cinematography <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri rdf:type onto:Film}
Orange(huggingface)
Which political party got elected in First Legislative Assembly of Uttar Pradesh?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh prop:party ?uri }
Orange(huggingface)
Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri onto:network <http://dbpe...
Orange(huggingface)
Who commanded the invasion of Buwat and made Fatima bint Sa'd famous?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Invasion_of_Buwat> prop:commander ?uri. <http://dbpedia.org/resource/Fatimah_bint_Sa'd> onto:knownFor ?uri . }
Orange(huggingface)
List the governors of Jimmie Lou Fisher?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Jimmie_Lou_Fisher prop:governor ?uri }
Orange(huggingface)
What is the birthplace of Liudmila Privivkova and Qadir Huseynov?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Liudmila_Privivkova onto:birthPlace ?uri. res:Qadir_Huseynov onto:birthPlace ?uri . }
Orange(huggingface)
Count the number of books whose author's were born in Alcal de Henares ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Alcalá_de_Henares> . ?uri onto:author ?x . ?uri rdf:type onto:Book}
Orange(huggingface)
In which races have Tillingdale's horses participated?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:owner <http://dbpedia.org/resource/Tillingdale> . ?x prop:race ?uri . ?x rdf:type onto:Horse}
Orange(huggingface)
Count all the things licensed as Software as a service.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:license <http://dbpedia.org/resource/Software_as_a_service> . }
Orange(huggingface)
What are the last two studio albums of Moondog Matinee?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri }
Orange(huggingface)
Count the movies in Swedish language?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language <http://dbpedia.org/resource/Swedish_language> . ?uri rdf:type onto:Film}
Orange(huggingface)
Which company owns Evraz?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Evraz onto:owningCompany ?uri }
Orange(huggingface)
What are some games availible on nintendo's virtual console?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri rdf:type onto:VideoGame}
Orange(huggingface)
What is the parent company of the airline whose hub is in Detroit?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:hubs <http://dbpedia.org/resource/Detroit> . ?x prop:parent ?uri . ?x rdf:type onto:Airline}
Orange(huggingface)
Did John Byrne create Emma Frost?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Emma_Frost> prop:creators <http://dbpedia.org/resource/John_Byrne_(comics)> }
Orange(huggingface)
What are the books written by the the person who made the Novelas ejemplares?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:notableWork <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri onto:author ?x . ?uri rdf:type onto:Book}
Orange(huggingface)
Which researchers received fellowship from Royal Society?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:award <http://dbpedia.org/resource/Royal_Society> . ?uri rdf:type onto:Scientist}
Orange(huggingface)
WHo gave the lyrcis of Doonesbury ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> onto:lyrics ?uri }
Orange(huggingface)
What games are played at institutions affiliated with the international association of universities?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:affiliations <http://dbpedia.org/resource/International_Association_of_Universities> . ?x onto...
Orange(huggingface)
What are the movies whose editor died in Westwood, Los Angeles?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri onto:editing ?x . }
Orange(huggingface)
What television shows are distributed by Broadcast syndication?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri rdf:type onto:TelevisionShow}
Orange(huggingface)
How many TV shows has distributor located in Burbank California ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity <http://dbpedia.org/resource/Burbank,_California> . ?uri prop:distributor ...
Orange(huggingface)
Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri prop:network <http://d...
Orange(huggingface)
What are some things people born in Louisiana are famous for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth <http://dbpedia.org/resource/Louisiana> . ?x prop:knownFor ?uri . }
Orange(huggingface)
In how many places did Julian Leow Beng Kim study?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> prop:almaMater ?uri . ?uri rdf:type onto:Uni...
Orange(huggingface)
What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> prop:affiliation ?uri. <http://dbpedia.org/resource/Duncan_U._Fletcher> onto:a...
Orange(huggingface)
Name the office holder with successor as Adrian A Basora and child as Lori Black ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:child <http://dbpedia.org/resource/Lori_Black> . ?uri prop:successor <http://dbpedia.org/reso...
Orange(huggingface)
How many books have been penned by Miguel de Cervantes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX res: <http://dbpedia.org/resource/> 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}
Orange(huggingface)