question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
¿Quién estuvo casado con el presidente Chirac?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac onto:spouse ?uri . }
julipc-p(huggingface)
¿Cuál es el área metropolitana mas larga en el estado de Washington?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> prop:largestmetro ?uri . }
julipc-p(huggingface)
¿Dónde en Francia se produce el vino espumoso?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:wineProduced res:Sparkling_wine . ?uri onto:location res:France . }
julipc-p(huggingface)
¿Dónde murió Hillel Slovak?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak onto:deathPlace ?uri . }
julipc-p(huggingface)
¿Cuál es la zona horaria en San Pedro de Atacama?
PREFIX res: <http://dbpedia.org/resource/> PREFIX timezone: <http://dbpedia.org/timezone/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama timezone:timezone ?uri . }
julipc-p(huggingface)
¿En que ciudad termina la ruta Chilena 68?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . }
julipc-p(huggingface)
Dame todos los astronautas de la ESA.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:type res:European_Space_Agency . }
julipc-p(huggingface)
Dame todos los días festivos en Suecia.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Holiday . ?uri onto:country res:Sweden . }
julipc-p(huggingface)
¿Quien es el premio Pilitzer mas joven?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:award res:Pulitzer_Prize . ?uri onto:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1
julipc-p(huggingface)
¿Que animales están en peligro de extinción?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus 'CR' . }
julipc-p(huggingface)
¿Que jugadores de futbol han nacido en Malta?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerPlayer . ?uri onto:birthPlace res:Malta . }
julipc-p(huggingface)
¿Fue Arnold Schwarzenegger a la universidad?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Arnold_Schwarzenegger onto:almaMater ?x . ?x rdf:type onto:University . }
julipc-p(huggingface)
¿Qué lenguajes de programación fueron influenciados por el Perl?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . { ?uri onto:influencedBy res:Perl . } UNION { res:Perl onto:influenced ?uri . } }
julipc-p(huggingface)
¿Es Barack Obama demócrata?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama onto:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> . }
julipc-p(huggingface)
¿Cuántos hijos tiene Eddie Murphy?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Eddie_Murphy prop:children ?n . }
julipc-p(huggingface)
¿Cuál es el hijo mas mayor de Meryl Streep?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Meryl_Streep onto:child ?uri . ?uri onto:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1
julipc-p(huggingface)
¿Quién asesino a John Lennon?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person. ?uri prop:conviction res:Death_of_John_Lennon. }
julipc-p(huggingface)
¿Qué programa de viajero frecuente tienen la mayoría de las aerolineas?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT ?uri WHERE { ?airline rdf:type onto:Airline. ?airline prop:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. ...
julipc-p(huggingface)
¿En que ciudad esta la sede de Air China?
PREFIX res: <http://dbpedia.org/resource/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri rdf:type yago:City108524735 . }
julipc-p(huggingface)
¿Qué artistas nacieron en la misma fecha que Rachel Stevens?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Artist. res:Rachel_Stevens prop:dateOfBirth ?date . ?uri prop:dateOfBirth ?date . }
julipc-p(huggingface)
¿Cuántos científicos se han graduado en un Universidad de la Ivy League?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type onto:Scientist . ?uri onto:almaMater ?university . ?university onto:affiliation res:Ivy_League . }
julipc-p(huggingface)
¿Que tipo de uva crece en Oregon?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . }
julipc-p(huggingface)
¿Quien protagoniza peliculas españolas producidas por Benicio del Toro?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country res:Spain . ?film onto:producer res:Benicio_del_Toro . ?...
julipc-p(huggingface)
¿Quien es el manager de Real Madrid?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Real_Madrid_C.F.> onto:manager ?uri . }
julipc-p(huggingface)
¿Cual es la moneda de China?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:China onto:currency ?uri . }
julipc-p(huggingface)
¿Que peliculas protagonizadas por Brad Pitt han sido dirigidas por Guy Ritchie?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Brad_Pitt . ?uri onto:director res:Guy_Ritchie . }
julipc-p(huggingface)
¿Cuantas compañías han sido fundadas por el fundador de Facebook?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT COUNT(?c) WHERE { res:Facebook onto:foundedBy ?uri . ?c onto:foundedBy ?uri . }
julipc-p(huggingface)
¿Cuántas compañías fueron fundadas en el mismo año que Google?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type onto:Company . ?c onto:foundingYear ?year . res:Google onto:foundingYear ?year . }
julipc-p(huggingface)
¿Qué subsidiario de Lufthansa vuela en Dortmund y en Berlin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lufthansa onto:subsidiary ?uri . ?uri onto:targetAirport res:Dortmund_Airport . ?uri onto:targetAirport res:Berlin_Tegel_Airport . }
julipc-p(huggingface)
¿Cuántas compañías son miembros del la Star Alliance?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . ?uri onto:alliance res:Star_Alliance . }
julipc-p(huggingface)
Dame todas las naves espaciales que han volado a Marte
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Spacecraft . ?uri prop:planet res:Mars . }
julipc-p(huggingface)
¿Qué músico ha escrito el mayor numero de libros?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Musician . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1
julipc-p(huggingface)
Muestrame todas las personas nacidas en Halloween
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . { ?uri onto:birthDate ?date . } UNION { ?uri prop:birthDate ?date . } res:...
julipc-p(huggingface)
Dame todas las organizaciones Suizas sin animo de lucro
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Switzerland . } UNION { ?uri onto:location ?x . ?x onto:country res:Switzerland . } }
julipc-p(huggingface)
¿En que país se sitúa la Meca?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mecca onto:country ?uri . }
julipc-p(huggingface)
¿Cual es la ganancia en neto de Apple?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> onto:netIncome ?ni . }
julipc-p(huggingface)
¿Qué significa la abreviación FIFA?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?name WHERE { res:FIFA prop:name ?name . }
julipc-p(huggingface)
¿Cuándo se disolvió la dinastía de Ming?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?date WHERE { res:Ming_dynasty onto:dissolutionDate ?date . }
julipc-p(huggingface)
¿Qué museo en Nueva York tiene el mayor numero de visitantes?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:New_York_City . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1
julipc-p(huggingface)
¿Es el lago Baikal mayor que el lago Great Bear?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Lake_Baikal onto:areaTotal ?a1 . res:Great_Bear_Lake onto:areaTotal ?a2 . FILTER (?a1 > ?a2) }
julipc-p(huggingface)
¿Los postres de que país contienen pescado?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x onto:type res:Dessert . ?x onto:origin ?uri . ?x onto:ingredient res:Fish . }
julipc-p(huggingface)
¿Cuál es la montaña mas alta en Italia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Italy . ?uri onto:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1
julipc-p(huggingface)
¿Dónde estudio el arquitecto de la torre Eiffel?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower onto:architect ?x . ?x prop:almaMater ?uri . }
julipc-p(huggingface)
¿Qué partidos Griegos están a favor de Europa?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Greece . ?uri onto:ideology res:Pro-Europeanism . }
julipc-p(huggingface)
¿Cuál es la diferencia de altura entra el Monte Everest y K2?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest onto:elevation ?h1 . res:K2 onto:elevation ?h2 . }
julipc-p(huggingface)
¿Quién es el alcalde de Rotterdam?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rotterdam onto:leaderName ?uri . }
julipc-p(huggingface)
¿Cómo de alta el la torre Yokohama Marine?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower onto:height ?num . }
julipc-p(huggingface)
¿Es el Taiko un tipo de instrumento musical?
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . }
julipc-p(huggingface)
¿Cuántos grupos étnicos viven en Eslovenia?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia onto:ethnicGroup ?uri . }
julipc-p(huggingface)
Lista los siete reyes de Roma.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:title res:King_of_Rome . }
julipc-p(huggingface)
¿Quiénes fueron los padres de la reina Victoria?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria onto:parent ?uri . }
julipc-p(huggingface)
¿Quien es el jugador mas pesado del los Chicago Bulls?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:weight ?num . { ?uri prop:team res:Chicago_Bulls . } UNION { ?ur...
julipc-p(huggingface)
¿Que volcanos han erupcionado en Japon desde el 2000?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea res:Japan . ?uri onto:eruptionYear ?date . FILTER (year(?date) >= 2000) }
julipc-p(huggingface)
Quien es el jugador de baloncesto mas alto?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1
julipc-p(huggingface)
¿Actúa Christian Bale en Batman Begins?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Batman_Begins onto:starring res:Christian_Bale . }
julipc-p(huggingface)
¿Qué misiones espaciales partieron desde Baionur?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:launchPad res:Baikonur_Cosmodrome . }
julipc-p(huggingface)
¿Qué abrevia CPU?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation "CPU" . }
julipc-p(huggingface)
¿Es la Coca Cola una bebida?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Cola rdf:type onto:Beverage . }
julipc-p(huggingface)
¿A qué estilo artístico pertenece el pintor de Los Tres Bailarines?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . }
julipc-p(huggingface)
¿Cuál es el punto más alto del Karakorum?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram onto:highestPlace ?uri . }
julipc-p(huggingface)
¿A qué especie pertenece la rana verde?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hylidae prop:classis ?uri . }
julipc-p(huggingface)
¿Quién es el alcalde de la cuidad de Nueva York?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:New_York_City onto:leaderName ?uri . }
julipc-p(huggingface)
¿Qué empresas fueron fundadas en 1950?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Organisation . { ?uri onto:formationYear ?date . } UNION { ?uri onto:foundingYear ?date. } UNION { ?uri prop:foundation ?date ...
julipc-p(huggingface)
¿Qué países tienen lugares con más de dos cuevas?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type onto:Cave . ?cave onto:location ?uri . ?uri rdf:type onto:Country . } GROUP BY ?uri HAVING (COUNT(?cave) > 2)
julipc-p(huggingface)
¿Qué países europeos tienen una monarquía constitucional?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . }
julipc-p(huggingface)
¿Qué monárcas del reino unido estaban casados con una persona alemana?
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . ?uri onto:spouse ?spouse . ?spouse onto:birthPlace r...
julipc-p(huggingface)
Dame todas las cancilleres alemanas.
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office res:Chancellor_of_Germany . }
julipc-p(huggingface)
Dame todos los tipos de escuela.
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:SchoolTypes . }
julipc-p(huggingface)
¿Cuántas monarquías existen en Europa?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType ?govern . FILTER regex(?govern,'monarchy') . }
julipc-p(huggingface)
Dame todos los presidentes de los estados unidos de américa.
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . { ?uri rdf:type yago:Preside...
julipc-p(huggingface)
¿Qué empresas aerospaciales trabajar también en en tecnología de reactores?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . ?uri prop:industry res:Aerospace . ?uri prop:industry res:Nuclear_reactor...
julipc-p(huggingface)
¿A quién pertenece Aldi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Aldi onto:keyPerson ?uri . }
julipc-p(huggingface)
¿Cuáles son los idiomas oficiales de Las Philipinas?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines onto:officialLanguage ?uri . }
julipc-p(huggingface)
Dame la página de web de Forbes.
PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string . }
julipc-p(huggingface)
¿En qué estados de los estados unidos de américa hay oro?
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX prop: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:mineral ?mineral . FILTER (regex(?mineral,'gold','i')) . }
julipc-p(huggingface)
¿Quién fue el quinto presidente de los estados unidos de américa?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:orderInOffice '5th President of the United States'@en . }
julipc-p(huggingface)
Dame todas las astronautas rusas.
PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . }
julipc-p(huggingface)
¿Qué países de la unión europea han introducido el Euro?
PREFIX prop: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri prop:currency res:Euro . } UNION { ?uri prop:c...
julipc-p(huggingface)
How high is the lighthouse in Colombo?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse onto:height ?num . }
julipc-p(huggingface)
How much did Pulp Fiction cost?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . }
julipc-p(huggingface)
When did Operation Overlord commence?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord onto:date ?d . }
julipc-p(huggingface)
In which city does the Chile Route 68 end?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . }
julipc-p(huggingface)
Which cities does the Weser flow through?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Weser onto:city ?uri . }
julipc-p(huggingface)
How many seats does the home stadium of FC Porto have?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { res:FC_Porto onto:ground ?x . ?x onto:seatingCapacity ?n . }
julipc-p(huggingface)
Who is the daughter of Robert Kennedy married to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy onto:child ?child . ?child onto:spouse ?uri . }
julipc-p(huggingface)
Which books by Kerouac were published by Viking Press?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher <http://dbpedia.org/resource/Viking_Press> . ?uri onto:author <http://dbpedia.org/resource/Jack_Kerouac> . }
julipc-p(huggingface)
How tall is Amazon Eve?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve onto:height ?height . }
julipc-p(huggingface)
How much did the Lego Movie cost?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie onto:budget ?n . }
julipc-p(huggingface)
Where does Piccadilly start?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:routeStart res:Piccadilly. }
julipc-p(huggingface)
How many languages are spoken in Turkmenistan?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT (COUNT(DISTINCT ?x) as ?c) WHERE { <http://dbpedia.org/resource/Turkmenistan> onto:language ?x . }
julipc-p(huggingface)
In which films did Julia Roberts as well as Richard Gere play?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring <http://dbpedia.org/resource/Julia_Roberts> . ?uri onto:starring <http://dbpedia.org/resource/Richard_Gere> . }
julipc-p(huggingface)
In which year was Rachel Stevens born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . }
julipc-p(huggingface)
How often did Jane Fonda marry?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { <http://dbpedia.org/resource/Jane_Fonda> onto:spouse ?uri . }
julipc-p(huggingface)
How many people live in Poland?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Poland onto:populationTotal ?uri . }
julipc-p(huggingface)
What is the location of the Houses of Parliament?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . }
julipc-p(huggingface)
What was the last movie with Alec Guinness?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring <http://dbpedia.org/resource/Alec_Guinness> . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1
julipc-p(huggingface)
Who created Family Guy?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Family_Guy onto:creator ?uri . }
julipc-p(huggingface)
Give me all actors starring in movies directed by William Shatner.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring ?uri . }
julipc-p(huggingface)
Which ingredients do I need for carrot cake?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . }
julipc-p(huggingface)
Which computer scientist won an oscar?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { { ?uri onto:field <http://dbpedia.org/resource/Computer_science> . } UNION { ?uri <http://purl.org/dc/elements/1.1/description> ?s . FILTER regex(?s,'computer scientist','i') } ?uri onto:award <http://dbpedia.org/resource/Academy_Awards> . }
julipc-p(huggingface)