id
stringlengths 11
13
| question
stringlengths 11
8.64k
| answers
sequence | subgraph
dict | sparql
stringlengths 49
483
|
---|---|---|---|---|
lcquad2-9825 | Buckwheat's parent taxon is what? | [
"kasha",
"Fagopyrum"
] | {
"entities": [
"Q10379618",
"Q7223832",
"Q132734"
],
"relations": [
"P171",
"P1672"
],
"adjacency": [
[
2,
0,
1
],
[
2,
1,
0
]
],
"entity_labels": [
"kasha",
"Fagopyrum",
"Fagopyrum esculentum"
],
"relation_labels": [
"parent taxon",
"this taxon is source of"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q132734 wdt:P171 ?ans_1 . wd:Q132734 wdt:P1672 ?ans_2 } |
lcquad2-16138 | who was the inspiration of the words of dónde estás? | [
"Red Hot Chili Peppers"
] | {
"entities": [
"Q2728376",
"Q10708",
"Q34424"
],
"relations": [
"P737",
"P676"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"¿Dónde Estás Corazón?",
"Red Hot Chili Peppers",
"Shakira"
],
"relation_labels": [
"influenced by",
"lyrics by"
]
} | SELECT ?answer WHERE { wd:Q2728376 wdt:P676 ?X . ?X wdt:P737 ?answer} |
lcquad2-24575 | What is the title of an calculation that begins with the letter s. | [
"SCOUT"
] | {
"entities": [
"Q8366",
"Q9326047"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"algorithm",
"SCOUT"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q8366 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-15670 | What is the name of Nico Robin's writer? | [
"Eiichiro Oda"
] | {
"entities": [
"Q1190653",
"Q28667972",
"Q2010"
],
"relations": [
"P1441",
"P50"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Nico Robin",
"One Piece",
"Eiichiro Oda"
],
"relation_labels": [
"present in work",
"author"
]
} | SELECT ?answer WHERE { wd:Q1190653 wdt:P1441 ?X . ?X wdt:P50 ?answer} |
lcquad2-20516 | What is the Twenty Thousand Leagues Under the Sea edition translation? | [
"20.000 mil podmorskiej żeglugi"
] | {
"entities": [
"Q183565",
"Q58364741",
"Q39811647"
],
"relations": [
"P629",
"P31"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"Twenty Thousand Leagues Under the Sea",
"20.000 mil podmorskiej żeglugi",
"translated work"
],
"relation_labels": [
"edition or translation of",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P629 wd:Q183565 . ?sbj wdt:P31 wd:Q39811647 } |
lcquad2-15268 | How are called the individual living following to Extremadura? | [
"Category:People from Portalegre District"
] | {
"entities": [
"Q225189",
"Q17248584",
"Q5777"
],
"relations": [
"P47",
"P1792"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Portalegre",
"Category:People from Portalegre District",
"Extremadura"
],
"relation_labels": [
"shares border with",
"category of associated people"
]
} | SELECT ?answer WHERE { wd:Q5777 wdt:P47 ?X . ?X wdt:P1792 ?answer} |
lcquad2-24742 | which locale of austria begins with w | [
"Wiener Neustadt-Land District"
] | {
"entities": [
"Q694413",
"Q871419"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Wiener Neustadt-Land District",
"district of Austria"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q871419 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-25515 | Which is the puppy that's in show history of Jetty Gallery and begins with the letter b? | [
"Balto"
] | {
"entities": [
"Q805807",
"Q144",
"Q4752732"
],
"relations": [
"P31",
"P608"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"Balto",
"dog",
"Anchorage Museum"
],
"relation_labels": [
"instance of",
"exhibition history"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q144 . ?sbj wdt:P608 wd:Q4752732 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'b')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23310 | Let me know dialect whose title has the word äynu in it. | [
"Äynu"
] | {
"entities": [
"Q27927",
"Q34770"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Äynu",
"language"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q34770 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'äynu')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-16735 | Who preceded the position held by Tainan's head of government? | [
"Magistrate of Tainan County"
] | {
"entities": [
"Q140631",
"Q6797825",
"Q50293073"
],
"relations": [
"P1313",
"P1365"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Tainan",
"Mayor of Tainan",
"Magistrate of Tainan County"
],
"relation_labels": [
"office held by head of government",
"replaces"
]
} | SELECT ?answer WHERE { wd:Q140631 wdt:P1313 ?X . ?X wdt:P1365 ?answer} |
lcquad2-24074 | What medical specialty starts with the letter 't'? | [
"travel medicine"
] | {
"entities": [
"Q930752",
"Q919582"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"medical specialty",
"travel medicine"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q930752 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-22316 | List the typical symptoms of lung cancer? | [
"wheeze"
] | {
"entities": [
"Q47912",
"Q517104",
"Q639907"
],
"relations": [
"P31",
"P780"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"lung cancer",
"wheeze",
"medical finding"
],
"relation_labels": [
"instance of",
"symptoms and signs"
]
} | select distinct ?obj where { wd:Q47912 wdt:P780 ?obj . ?obj wdt:P31 wd:Q639907 } |
lcquad2-22933 | WHAT MANAGERIAL BODY IS THE PAIR FOR THE COMMUNE OF BILBAO, FRANCE? | [
"Bordeaux"
] | {
"entities": [
"Q1479",
"Q8692",
"Q484170"
],
"relations": [
"P31",
"P190"
],
"adjacency": [
[
0,
1,
1
],
[
0,
0,
2
]
],
"entity_labels": [
"Bordeaux",
"Bilbao",
"commune of France"
],
"relation_labels": [
"instance of",
"twinned administrative body"
]
} | select distinct ?sbj where { ?sbj wdt:P190 wd:Q8692 . ?sbj wdt:P31 wd:Q484170 } |
lcquad2-16624 | Who was engaged in the conflict of Sister Emilio Polli | [
"World War I"
] | {
"entities": [
"Q3724488",
"Q110022501",
"Q361"
],
"relations": [
"P3373",
"P607"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Emilio Polli",
"Gianni Polli",
"World War I"
],
"relation_labels": [
"sibling",
"conflict"
]
} | SELECT ?answer WHERE { wd:Q3724488 wdt:P3373 ?X . ?X wdt:P607 ?answer} |
lcquad2-22495 | Name a film set within the Wonder Cinematic Universe. | [
"Thor: The Dark World"
] | {
"entities": [
"Q642878",
"Q11424",
"Q1201853"
],
"relations": [
"P1445",
"P31"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Marvel Cinematic Universe",
"film",
"Thor: The Dark World"
],
"relation_labels": [
"fictional universe described in",
"instance of"
]
} | select distinct ?obj where { wd:Q642878 wdt:P1445 ?obj . ?obj wdt:P31 wd:Q11424 } |
lcquad2-19784 | Which East Asian country is landlocked? | [
"Mongolia"
] | {
"entities": [
"Q123480",
"Q711",
"Q27231"
],
"relations": [
"P706",
"P31"
],
"adjacency": [
[
1,
0,
2
],
[
1,
1,
0
]
],
"entity_labels": [
"landlocked country",
"Mongolia",
"East Asia"
],
"relation_labels": [
"located in/on physical feature",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P706 wd:Q27231 . ?sbj wdt:P31 wd:Q123480 } |
lcquad2-13785 | Who is Michel Houellebecq's part demonstrate, that works as a librarian? | [
"Georges Perec"
] | {
"entities": [
"Q157303",
"Q182436",
"Q103114"
],
"relations": [
"P106",
"P737"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Georges Perec",
"librarian",
"Michel Houellebecq"
],
"relation_labels": [
"occupation",
"influenced by"
]
} | SELECT ?answer WHERE { wd:Q103114 wdt:P737 ?answer . ?answer wdt:P106 wd:Q182436} |
lcquad2-17696 | Who was the dedicatee at the put of interment for Jude the Apostle? | [
"Peter"
] | {
"entities": [
"Q33923",
"Q12512",
"Q43945"
],
"relations": [
"P119",
"P825"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Peter",
"St. Peter's Basilica",
"Jude the Apostle"
],
"relation_labels": [
"place of burial",
"dedicated to"
]
} | SELECT ?answer WHERE { wd:Q43945 wdt:P119 ?X . ?X wdt:P825 ?answer} |
lcquad2-22292 | What sort of government is Emmanuel Macron portion of? | [
"French Fifth Republic"
] | {
"entities": [
"Q17152708",
"Q3052772",
"Q200686"
],
"relations": [
"P35",
"P31"
],
"adjacency": [
[
2,
0,
1
],
[
2,
1,
0
]
],
"entity_labels": [
"republic regime in France",
"Emmanuel Macron",
"French Fifth Republic"
],
"relation_labels": [
"head of state",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P35 wd:Q3052772 . ?sbj wdt:P31 wd:Q17152708 } |
lcquad2-23561 | Tell me about the social networking service whose name contains the word yak | [
"YaKlass"
] | {
"entities": [
"Q3220391",
"Q28666316"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"social networking service",
"YaKlass"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q3220391 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'yak')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-20630 | Which website did Julian work for? | [
"WikiLeaks"
] | {
"entities": [
"Q360",
"Q1344897",
"Q359"
],
"relations": [
"P31",
"P50"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"Julian Assange",
"whistleblower platform",
"WikiLeaks"
],
"relation_labels": [
"instance of",
"author"
]
} | select distinct ?sbj where { ?sbj wdt:P50 wd:Q360 . ?sbj wdt:P31 wd:Q1344897 } |
lcquad2-20919 | who is the steamship for outlined by of Isambard Kingdom Brunel? | [
"SS Great Western"
] | {
"entities": [
"Q207380",
"Q946641",
"Q12859788"
],
"relations": [
"P31",
"P287"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Isambard Kingdom Brunel",
"SS Great Western",
"steamship"
],
"relation_labels": [
"instance of",
"designed by"
]
} | select distinct ?sbj where { ?sbj wdt:P287 wd:Q207380 . ?sbj wdt:P31 wd:Q12859788 } |
lcquad2-21800 | Who is the {infection} for {indications} of {delusion? | [
"amentia"
] | {
"entities": [
"Q189643",
"Q12136",
"Q462833"
],
"relations": [
"P31",
"P780"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"delusion",
"disease",
"amentia"
],
"relation_labels": [
"instance of",
"symptoms and signs"
]
} | select distinct ?sbj where { ?sbj wdt:P780 wd:Q189643 . ?sbj wdt:P31 wd:Q12136 } |
lcquad2-14345 | What is {adjoining to} of {passing area} of {Michelangelo Antonioni} ? | [
"Zagarolo"
] | {
"entities": [
"Q220",
"Q140255",
"Q55433"
],
"relations": [
"P20",
"P47"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Rome",
"Zagarolo",
"Michelangelo Antonioni"
],
"relation_labels": [
"place of death",
"shares border with"
]
} | SELECT ?answer WHERE { wd:Q55433 wdt:P20 ?X . ?X wdt:P47 ?answer} |
lcquad2-22462 | Ears are used for which of the senses? | [
"hearing"
] | {
"entities": [
"Q7362",
"Q160289",
"Q173253"
],
"relations": [
"P31",
"P927"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"ear",
"hearing",
"sense"
],
"relation_labels": [
"instance of",
"anatomical location"
]
} | select distinct ?sbj where { ?sbj wdt:P927 wd:Q7362 . ?sbj wdt:P31 wd:Q173253 } |
lcquad2-9495 | What was Catherine the Great's birthplace, and where did she die? | [
"Saint Petersburg",
"Szczecin"
] | {
"entities": [
"Q393",
"Q36450",
"Q656"
],
"relations": [
"P19",
"P20"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"Szczecin",
"Catherine II of Russia",
"Saint Petersburg"
],
"relation_labels": [
"place of birth",
"place of death"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q36450 wdt:P20 ?ans_1 . wd:Q36450 wdt:P19 ?ans_2 } |
lcquad2-14218 | What is the public workplace held by means of John Russell, 1st Earl Russell, that was appointed via Elizabeth II? | [
"Secretary of State for Foreign and Commonwealth Affairs"
] | {
"entities": [
"Q9682",
"Q1371091",
"Q157259"
],
"relations": [
"P39",
"P748"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Elizabeth II",
"Secretary of State for Foreign and Commonwealth Affairs",
"John Russell, 1st Earl Russell"
],
"relation_labels": [
"position held",
"appointed by"
]
} | SELECT ?answer WHERE { wd:Q157259 wdt:P39 ?answer . ?answer wdt:P748 wd:Q9682} |
lcquad2-14867 | What is the melodic instrument of the musician of "Piano Concerto No. 5"? | [
"piano"
] | {
"entities": [
"Q255",
"Q5994",
"Q239700"
],
"relations": [
"P1303",
"P86"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Ludwig van Beethoven",
"piano",
"Piano Concerto No. 5"
],
"relation_labels": [
"instrument",
"composer"
]
} | SELECT ?answer WHERE { wd:Q239700 wdt:P86 ?X . ?X wdt:P1303 ?answer} |
lcquad2-25028 | Which is the weekly newspaper proprietor of which is StarWipe and carries the phrase onion in it's name? | [
"The Onion"
] | {
"entities": [
"Q618236",
"Q2305295",
"Q21189788"
],
"relations": [
"P31",
"P1830"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"The Onion",
"weekly newspaper",
"StarWipe"
],
"relation_labels": [
"instance of",
"owner of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2305295 . ?sbj wdt:P1830 wd:Q21189788 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'onion')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-13769 | What is the first identify of Jules Léotrad, which is the identical as Júlio? | [
"Jules"
] | {
"entities": [
"Q356388",
"Q6321687",
"Q1711638"
],
"relations": [
"P735",
"P460"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Jules Léotard",
"Júlio",
"Jules"
],
"relation_labels": [
"given name",
"said to be the same as"
]
} | SELECT ?answer WHERE { wd:Q356388 wdt:P735 ?answer . ?answer wdt:P460 wd:Q6321687} |
lcquad2-20644 | Title the mascot for Press Maiden. | [
"Eddie the Head"
] | {
"entities": [
"Q259261",
"Q42482",
"Q18670161"
],
"relations": [
"P31",
"P822"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Eddie the Head",
"Iron Maiden",
"mascot"
],
"relation_labels": [
"instance of",
"mascot"
]
} | select distinct ?obj where { wd:Q42482 wdt:P822 ?obj . ?obj wdt:P31 wd:Q18670161 } |
lcquad2-11941 | Cricket World Cup of North East England was founded by who? | [
"England"
] | {
"entities": [
"Q21",
"Q47983",
"Q192202"
],
"relations": [
"P112",
"P150"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"England",
"North East England",
"Cricket World Cup"
],
"relation_labels": [
"founded by",
"contains the administrative territorial entity"
]
} | SELECT ?answer WHERE { wd:Q192202 wdt:P112 ?answer . ?answer wdt:P150 wd:Q47983} |
lcquad2-14552 | WHAT COMES FROM Name OF LCD SOUNDSYSTEM ? | [
"United States of America"
] | {
"entities": [
"Q1153070",
"Q45752",
"Q30"
],
"relations": [
"P495",
"P264"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"DFA Records",
"LCD Soundsystem",
"United States of America"
],
"relation_labels": [
"country of origin",
"record label"
]
} | SELECT ?answer WHERE { wd:Q45752 wdt:P264 ?X . ?X wdt:P495 ?answer} |
lcquad2-21714 | What programming dialect was created by Dennis M. Ritchie? | [
"C"
] | {
"entities": [
"Q15777",
"Q28922885",
"Q45575"
],
"relations": [
"P178",
"P31"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"C",
"procedural programming language",
"Dennis M. Ritchie"
],
"relation_labels": [
"developer",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P178 wd:Q45575 . ?sbj wdt:P31 wd:Q28922885 } |
lcquad2-14393 | What's Dizzee Rascal's diplomatic relationship? | [
"Libya"
] | {
"entities": [
"Q366506",
"Q1016",
"Q145"
],
"relations": [
"P27",
"P530"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Dizzee Rascal",
"Libya",
"United Kingdom"
],
"relation_labels": [
"country of citizenship",
"diplomatic relation"
]
} | SELECT ?answer WHERE { wd:Q366506 wdt:P27 ?X . ?X wdt:P530 ?answer} |
lcquad2-20350 | Oklahoma City is found in which county? | [
"Cleveland County"
] | {
"entities": [
"Q13414760",
"Q484603",
"Q34863"
],
"relations": [
"P31",
"P131"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"county of Oklahoma",
"Cleveland County",
"Oklahoma City"
],
"relation_labels": [
"instance of",
"located in the administrative territorial entity"
]
} | select distinct ?obj where { wd:Q34863 wdt:P131 ?obj . ?obj wdt:P31 wd:Q13414760 } |
lcquad2-12197 | What is the child of Ja'far al-Sadiq whose sister is Asmaa Bint Jafar? | [
"Muhammad ibn Ja'far al-Sadiq"
] | {
"entities": [
"Q6932874",
"Q170046",
"Q18595646"
],
"relations": [
"P3373",
"P40"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Muhammad ibn Ja'far al-Sadiq",
"Ja'far al-Sadiq",
"Asmaa Bint Jafar"
],
"relation_labels": [
"sibling",
"child"
]
} | SELECT ?answer WHERE { wd:Q170046 wdt:P40 ?answer . ?answer wdt:P3373 wd:Q18595646} |
lcquad2-12320 | What competes in Giorgio de Chirico given the candidate of Gerard Ernest Schneider? | [
"Documenta II"
] | {
"entities": [
"Q118431",
"Q265448",
"Q156622"
],
"relations": [
"P1344",
"P710"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Gérard Ernest Schneider",
"Documenta II",
"Giorgio de Chirico"
],
"relation_labels": [
"participant in",
"participant"
]
} | SELECT ?answer WHERE { wd:Q156622 wdt:P1344 ?answer . ?answer wdt:P710 wd:Q118431} |
lcquad2-25288 | Tell me the enterprise that has the anthem of Anthem of Europe and carries the word community in it's name? | [
"European Economic Community"
] | {
"entities": [
"Q43229",
"Q11993",
"Q52847"
],
"relations": [
"P31",
"P85"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"organization",
"Anthem of Europe",
"European Economic Community"
],
"relation_labels": [
"instance of",
"anthem"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q43229 . ?sbj wdt:P85 wd:Q11993 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'community')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-20119 | What political party does Aung San Suu Kyi have a place | [
"National League for Democracy"
] | {
"entities": [
"Q36740",
"Q849603",
"Q7278"
],
"relations": [
"P31",
"P488"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Aung San Suu Kyi",
"National League for Democracy",
"political party"
],
"relation_labels": [
"instance of",
"chairperson"
]
} | select distinct ?sbj where { ?sbj wdt:P488 wd:Q36740 . ?sbj wdt:P31 wd:Q7278 } |
lcquad2-9807 | Who is the {member of political party} and the {country of citizenship} of {Joe_Arpaio} ? | [
"Republican Party",
"United States of America"
] | {
"entities": [
"Q1372167",
"Q29468",
"Q30"
],
"relations": [
"P102",
"P27"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"Joe Arpaio",
"Republican Party",
"United States of America"
],
"relation_labels": [
"member of political party",
"country of citizenship"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q1372167 wdt:P102 ?ans_1 . wd:Q1372167 wdt:P27 ?ans_2 } |
lcquad2-21569 | Which elliptical dwarf galaxy for Andromeda Galaxy's parent astronomical body | [
"NGC 185"
] | {
"entities": [
"Q490334",
"Q234077",
"Q2469"
],
"relations": [
"P397",
"P31"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"NGC 185",
"dwarf elliptical galaxy",
"Andromeda Galaxy"
],
"relation_labels": [
"parent astronomical body",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P397 wd:Q2469 . ?sbj wdt:P31 wd:Q234077 } |
lcquad2-19701 | The Arabic alphabet is the writing system for which language? | [
"Khowar"
] | {
"entities": [
"Q938216",
"Q8196",
"Q34770"
],
"relations": [
"P282",
"P31"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"Khowar",
"Arabic alphabet",
"language"
],
"relation_labels": [
"writing system",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P282 wd:Q8196 . ?sbj wdt:P31 wd:Q34770 } |
lcquad2-24218 | What interdisciplinary science begins with letter t | [
"toxicology"
] | {
"entities": [
"Q7218",
"Q1665984"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"toxicology",
"interdisciplinary science"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1665984 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-12768 | What I d has been made of Sichuan pepper and the Zanthoxylum taxon in it? | [
"Zanthoxylum simulans"
] | {
"entities": [
"Q756800",
"Q147050",
"Q10950918"
],
"relations": [
"P171",
"P1582"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Sichuan pepper",
"Zanthoxylum",
"Zanthoxylum simulans"
],
"relation_labels": [
"parent taxon",
"natural product of taxon"
]
} | SELECT ?answer WHERE { wd:Q756800 wdt:P1582 ?answer . ?answer wdt:P171 wd:Q147050} |
lcquad2-22278 | Who is the thunder god that shows up as Artemis? | [
"Zeus"
] | {
"entities": [
"Q842697",
"Q39503",
"Q34201"
],
"relations": [
"P4675",
"P31"
],
"adjacency": [
[
2,
0,
1
],
[
2,
1,
0
]
],
"entity_labels": [
"thunder god",
"Artemis",
"Zeus"
],
"relation_labels": [
"appears in the form of",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P4675 wd:Q39503 . ?sbj wdt:P31 wd:Q842697 } |
lcquad2-20868 | Title the terminal point for Bruges. | [
"Boudewijnkanaal"
] | {
"entities": [
"Q512254",
"Q12284",
"Q12994"
],
"relations": [
"P31",
"P609"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"Boudewijnkanaal",
"canal",
"Bruges"
],
"relation_labels": [
"instance of",
"terminus location"
]
} | select distinct ?sbj where { ?sbj wdt:P609 wd:Q12994 . ?sbj wdt:P31 wd:Q12284 } |
lcquad2-21255 | Which is the reference index for the list of works of Jessica Lange? | [
"Jessica Lange bibliography"
] | {
"entities": [
"Q1631107",
"Q173585",
"Q6187310"
],
"relations": [
"P31",
"P1455"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"bibliography",
"Jessica Lange",
"Jessica Lange bibliography"
],
"relation_labels": [
"instance of",
"list of works"
]
} | select distinct ?obj where { wd:Q173585 wdt:P1455 ?obj . ?obj wdt:P31 wd:Q1631107 } |
lcquad2-9812 | Which former entities are located in the combined city and municipality of Toronto? | [
"Chongqing",
"Ontario"
] | {
"entities": [
"Q11725",
"Q1904",
"Q172"
],
"relations": [
"P190",
"P131"
],
"adjacency": [
[
2,
1,
1
],
[
2,
0,
0
]
],
"entity_labels": [
"Chongqing",
"Ontario",
"Toronto"
],
"relation_labels": [
"twinned administrative body",
"located in the administrative territorial entity"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q172 wdt:P131 ?ans_1 . wd:Q172 wdt:P190 ?ans_2 } |
lcquad2-13698 | What is the sex of Sancho Panza, who is regularly befuddled with being a man? | [
"male"
] | {
"entities": [
"Q6581097",
"Q630823",
"Q8441"
],
"relations": [
"P21",
"P1889"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"male",
"Sancho Panza",
"man"
],
"relation_labels": [
"sex or gender",
"different from"
]
} | SELECT ?answer WHERE { wd:Q630823 wdt:P21 ?answer . ?answer wdt:P1889 wd:Q8441} |
lcquad2-13292 | "What is {set in the location} of {The Boondocks}, that has the {timeline of topic} in the {History of Chicago} ?" | [
"Chicago"
] | {
"entities": [
"Q1297",
"Q2456777",
"Q3031135"
],
"relations": [
"P840",
"P2184"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Chicago",
"The Boondocks",
"history of Chicago"
],
"relation_labels": [
"narrative location",
"history of topic"
]
} | SELECT ?answer WHERE { wd:Q2456777 wdt:P840 ?answer . ?answer wdt:P2184 wd:Q3031135} |
lcquad2-21489 | What is the drug's chemical compound used to treat bipolar disorder? | [
"tiagabine"
] | {
"entities": [
"Q907219",
"Q131755",
"Q11173"
],
"relations": [
"P2175",
"P31"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"tiagabine",
"bipolar disorder",
"chemical compound"
],
"relation_labels": [
"medical condition treated",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P2175 wd:Q131755 . ?sbj wdt:P31 wd:Q11173 } |
lcquad2-16808 | Singapore Airlines Flight 368 operates what facility? | [
"ATR 72-600"
] | {
"entities": [
"Q32245",
"Q24844462",
"Q19328170"
],
"relations": [
"P121",
"P137"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Singapore Airlines",
"Singapore Airlines Flight 368",
"ATR 72-600"
],
"relation_labels": [
"item operated",
"operator"
]
} | SELECT ?answer WHERE { wd:Q24844462 wdt:P137 ?X . ?X wdt:P121 ?answer} |
lcquad2-21239 | What nation supplanted the authentic nation of Joseon? | [
"Tamna"
] | {
"entities": [
"Q28179",
"Q28057",
"Q3024240"
],
"relations": [
"P31",
"P1366"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Joseon",
"Tamna",
"historical country"
],
"relation_labels": [
"instance of",
"replaced by"
]
} | select distinct ?sbj where { ?sbj wdt:P1366 wd:Q28179 . ?sbj wdt:P31 wd:Q3024240 } |
lcquad2-17923 | What is KLM celebrated for? | [
"restitution"
] | {
"entities": [
"Q1667757",
"Q1156800",
"Q181912"
],
"relations": [
"P793",
"P485"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"International Institute of Social History",
"restitution",
"KLM"
],
"relation_labels": [
"significant event",
"archives at"
]
} | SELECT ?answer WHERE { wd:Q181912 wdt:P485 ?X . ?X wdt:P793 ?answer} |
lcquad2-9805 | what are the nation of citizenship, occupation of Steven_Tyler? | [
"singer",
"United States of America"
] | {
"entities": [
"Q194045",
"Q177220",
"Q30"
],
"relations": [
"P106",
"P27"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"Steven Tyler",
"singer",
"United States of America"
],
"relation_labels": [
"occupation",
"country of citizenship"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q194045 wdt:P27 ?ans_1 . wd:Q194045 wdt:P106 ?ans_2 } |
lcquad2-20220 | What does the term pureblood mean in Harry Potter? | [
"Ron Weasley"
] | {
"entities": [
"Q173998",
"Q12372870",
"Q8337"
],
"relations": [
"P674",
"P31"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Ron Weasley",
"pureblood",
"Harry Potter"
],
"relation_labels": [
"characters",
"instance of"
]
} | select distinct ?obj where { wd:Q8337 wdt:P674 ?obj . ?obj wdt:P31 wd:Q12372870 } |
lcquad2-23896 | Tell me slave revolt whose identify have the word struggle in their title | [
"Second Carib War"
] | {
"entities": [
"Q7443152",
"Q1155622"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Second Carib War",
"slave rebellion"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1155622 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'war')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-13033 | Which male character is played by a lady in Faust? | [
"Heinrich Faust"
] | {
"entities": [
"Q6581097",
"Q63928429",
"Q29478"
],
"relations": [
"P674",
"P21"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"male",
"Heinrich Faust",
"Faust"
],
"relation_labels": [
"characters",
"sex or gender"
]
} | SELECT ?answer WHERE { wd:Q29478 wdt:P674 ?answer . ?answer wdt:P21 wd:Q6581097} |
lcquad2-24147 | what is geographic area that begins with s | [
"Šajkaška"
] | {
"entities": [
"Q899289",
"Q82794"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Šajkaška",
"geographic region"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q82794 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'š')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-19989 | who is the craftsmanship development for development of John Cage? | [
"Fluxus"
] | {
"entities": [
"Q108908",
"Q968159",
"Q180727"
],
"relations": [
"P31",
"P135"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Fluxus",
"art movement",
"John Cage"
],
"relation_labels": [
"instance of",
"movement"
]
} | select distinct ?obj where { wd:Q180727 wdt:P135 ?obj . ?obj wdt:P31 wd:Q968159 } |
lcquad2-24264 | Let me know which is the rural divinity which begins with the letter s? | [
"Saturn"
] | {
"entities": [
"Q134388",
"Q24284226"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Saturn",
"agricultural deity"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q24284226 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-15730 | What is the capital adjacent to the Rewari district? | [
"Bhiwani"
] | {
"entities": [
"Q2301759",
"Q796669",
"Q1852857"
],
"relations": [
"P47",
"P36"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Rewari district",
"Bhiwani",
"Bhiwani district"
],
"relation_labels": [
"shares border with",
"capital"
]
} | SELECT ?answer WHERE { wd:Q2301759 wdt:P47 ?X . ?X wdt:P36 ?answer} |
lcquad2-24745 | Disclose me the federal states that begins with the letter s | [
"Syrian Federation"
] | {
"entities": [
"Q12183911",
"Q43702"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Syrian Federation",
"federation"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q43702 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-22510 | Which is the zone of designing within the field of work of Claude Shannon? | [
"electrical engineering"
] | {
"entities": [
"Q43035",
"Q92760",
"Q12015335"
],
"relations": [
"P101",
"P31"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"electrical engineering",
"Claude Shannon",
"branch of engineering"
],
"relation_labels": [
"field of work",
"instance of"
]
} | select distinct ?obj where { wd:Q92760 wdt:P101 ?obj . ?obj wdt:P31 wd:Q12015335 } |
lcquad2-17008 | Specify the district situate of Erfurt | [
"Erfurt District"
] | {
"entities": [
"Q1205",
"Q1729",
"Q48054"
],
"relations": [
"P1376",
"P1365"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Thuringia",
"Erfurt",
"Erfurt District"
],
"relation_labels": [
"capital of",
"replaces"
]
} | SELECT ?answer WHERE { wd:Q1729 wdt:P1376 ?X . ?X wdt:P1365 ?answer} |
lcquad2-23590 | Tell me the weather phenomenon whose name is WIND IN IT | [
"Wind gradient"
] | {
"entities": [
"Q8023978",
"Q16332653"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Wind gradient",
"meteorological phenomenon"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q16332653 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wind')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-21924 | What's the human being for Jiang Zemin? | [
"Jiang Shangqing"
] | {
"entities": [
"Q16597",
"Q8296718",
"Q5"
],
"relations": [
"P31",
"P3448"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Jiang Zemin",
"Jiang Shangqing",
"human"
],
"relation_labels": [
"instance of",
"stepparent"
]
} | select distinct ?obj where { wd:Q16597 wdt:P3448 ?obj . ?obj wdt:P31 wd:Q5 } |
lcquad2-22775 | In which war Allies participated? | [
"Eastern Front (World War II)"
] | {
"entities": [
"Q198",
"Q189266",
"Q329888"
],
"relations": [
"P31",
"P710"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"war",
"Eastern Front (World War II)",
"Allies of the Second World War"
],
"relation_labels": [
"instance of",
"participant"
]
} | select distinct ?sbj where { ?sbj wdt:P710 wd:Q329888 . ?sbj wdt:P31 wd:Q198 } |
lcquad2-17368 | What is the level of taxon of the Dioscorea cubijensis? | [
"diosgenin"
] | {
"entities": [
"Q55846241",
"Q71549",
"Q1107734"
],
"relations": [
"P171",
"P1672"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Dioscorea cubijensis",
"Dioscorea",
"diosgenin"
],
"relation_labels": [
"parent taxon",
"this taxon is source of"
]
} | SELECT ?answer WHERE { wd:Q55846241 wdt:P171 ?X . ?X wdt:P1672 ?answer} |
lcquad2-17130 | Who painted the pendant to Le feu aux pudres? | [
"nudity"
] | {
"entities": [
"Q19966700",
"Q10791",
"Q2886017"
],
"relations": [
"P1639",
"P180"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Le feu aux poudres",
"nudity",
"The Shirt Withdrawn"
],
"relation_labels": [
"pendant of",
"depicts"
]
} | SELECT ?answer WHERE { wd:Q19966700 wdt:P1639 ?X . ?X wdt:P180 ?answer} |
lcquad2-20384 | Andromeda is the parent of what galaxy? | [
"Andromeda XX"
] | {
"entities": [
"Q11685799",
"Q318",
"Q2469"
],
"relations": [
"P31",
"P398"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Andromeda XX",
"galaxy",
"Andromeda Galaxy"
],
"relation_labels": [
"instance of",
"child astronomical body"
]
} | select distinct ?obj where { wd:Q2469 wdt:P398 ?obj . ?obj wdt:P31 wd:Q318 } |
lcquad2-12569 | What is Chris Hansen's mother tongue? | [
"English"
] | {
"entities": [
"Q1860",
"Q562448",
"Q131105"
],
"relations": [
"P103",
"P2989"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"English",
"Chris Hansen",
"nominative case"
],
"relation_labels": [
"native language",
"has grammatical case"
]
} | SELECT ?answer WHERE { wd:Q562448 wdt:P103 ?answer . ?answer wdt:P2989 wd:Q131105} |
lcquad2-9760 | What Russian political leader is a huge supporter of Fedor Emelianenko? | [
"Russian championship of combat sambo 2008",
"United Russia"
] | {
"entities": [
"Q18406138",
"Q205953",
"Q151469"
],
"relations": [
"P102",
"P1344"
],
"adjacency": [
[
1,
0,
2
],
[
1,
1,
0
]
],
"entity_labels": [
"Russian championship of combat sambo 2008",
"Fedor Emelianenko",
"United Russia"
],
"relation_labels": [
"member of political party",
"participant in"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q205953 wdt:P102 ?ans_1 . wd:Q205953 wdt:P1344 ?ans_2 } |
lcquad2-15799 | Who's the author of the prequel of The Structures of Everyday Life? | [
"Fernand Braudel"
] | {
"entities": [
"Q55399625",
"Q55399602",
"Q185105"
],
"relations": [
"P156",
"P50"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"The Wheels of Commerce",
"The Structures of Everyday Life",
"Fernand Braudel"
],
"relation_labels": [
"followed by",
"author"
]
} | SELECT ?answer WHERE { wd:Q55399602 wdt:P156 ?X . ?X wdt:P50 ?answer} |
lcquad2-23380 | Which news magazine has the word weekly in it?W | [
"Weekly"
] | {
"entities": [
"Q1684600",
"Q28430973"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"news magazine",
"Weekly"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1684600 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'weekly')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23041 | What is the Paris - built railway? | [
"SNCF"
] | {
"entities": [
"Q90",
"Q2324835",
"Q13646"
],
"relations": [
"P31",
"P740"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"Paris",
"national railway",
"SNCF"
],
"relation_labels": [
"instance of",
"location of formation"
]
} | select distinct ?sbj where { ?sbj wdt:P740 wd:Q90 . ?sbj wdt:P31 wd:Q2324835 } |
lcquad2-19994 | What deity is the crucifixion of Christ a significant event? | [
"Jesus"
] | {
"entities": [
"Q51636",
"Q302",
"Q178885"
],
"relations": [
"P793",
"P31"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"Crucifixion of Jesus",
"Jesus",
"deity"
],
"relation_labels": [
"significant event",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P793 wd:Q51636 . ?sbj wdt:P31 wd:Q178885 } |
lcquad2-19964 | Which political party has a chairperson named Mobuto Sese Seko? | [
"Popular Movement of the Revolution"
] | {
"entities": [
"Q164535",
"Q1670999",
"Q7278"
],
"relations": [
"P31",
"P488"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Mobutu Sese Seko",
"Popular Movement of the Revolution",
"political party"
],
"relation_labels": [
"instance of",
"chairperson"
]
} | select distinct ?sbj where { ?sbj wdt:P488 wd:Q164535 . ?sbj wdt:P31 wd:Q7278 } |
lcquad2-13583 | Who is confounded with Pearl Bailey that has an alma mater at North Carolina State University? | [
"Thurl Bailey"
] | {
"entities": [
"Q1661518",
"Q462118",
"Q1132346"
],
"relations": [
"P1889",
"P69"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Thurl Bailey",
"Pearl Bailey",
"North Carolina State University"
],
"relation_labels": [
"different from",
"educated at"
]
} | SELECT ?answer WHERE { wd:Q462118 wdt:P1889 ?answer . ?answer wdt:P69 wd:Q1132346} |
lcquad2-21455 | What animated movie did David Spade act in? | [
"The Rugrats Movie"
] | {
"entities": [
"Q857211",
"Q29168811",
"Q298658"
],
"relations": [
"P31",
"P725"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"The Rugrats Movie",
"animated feature film",
"David Spade"
],
"relation_labels": [
"instance of",
"voice actor"
]
} | select distinct ?sbj where { ?sbj wdt:P725 wd:Q298658 . ?sbj wdt:P31 wd:Q29168811 } |
lcquad2-13287 | "Which trade of Nokia, is appeared in Kick the bucket Difficult with a Vengeance?" | [
"New York Stock Exchange"
] | {
"entities": [
"Q13677",
"Q1418",
"Q106871"
],
"relations": [
"P414",
"P1441"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"New York Stock Exchange",
"Nokia",
"Die Hard with a Vengeance"
],
"relation_labels": [
"stock exchange",
"present in work"
]
} | SELECT ?answer WHERE { wd:Q1418 wdt:P414 ?answer . ?answer wdt:P1441 wd:Q106871} |
lcquad2-21723 | What was the name of Stephen Hawkins doctoral thesis? | [
"Properties of expanding universes"
] | {
"entities": [
"Q187685",
"Q42307084",
"Q17714"
],
"relations": [
"P31",
"P1026"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"doctoral thesis",
"Properties of expanding universes",
"Stephen Hawking"
],
"relation_labels": [
"instance of",
"academic thesis"
]
} | select distinct ?obj where { wd:Q17714 wdt:P1026 ?obj . ?obj wdt:P31 wd:Q187685 } |
lcquad2-22739 | who madhhab for religion of druze? | [
"Druzism"
] | {
"entities": [
"Q209928",
"Q163943",
"Q113152268"
],
"relations": [
"P140",
"P31"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"madhhab",
"Druze",
"Druzism"
],
"relation_labels": [
"religion or worldview",
"instance of"
]
} | select distinct ?obj where { wd:Q163943 wdt:P140 ?obj . ?obj wdt:P31 wd:Q209928 } |
lcquad2-13384 | What nearby city is the twin of Dusseldorg? | [
"Mettmann"
] | {
"entities": [
"Q324941",
"Q14878",
"Q1718"
],
"relations": [
"P190",
"P47"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"Żnin",
"Mettmann",
"Düsseldorf"
],
"relation_labels": [
"twinned administrative body",
"shares border with"
]
} | SELECT ?answer WHERE { wd:Q1718 wdt:P47 ?answer . ?answer wdt:P190 wd:Q324941} |
lcquad2-17262 | Signs of severe acute respiratory syndrome are attended to by using what methods? | [
"morphine"
] | {
"entities": [
"Q81225",
"Q188008",
"Q103177"
],
"relations": [
"P2176",
"P780"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"morphine",
"dyspnea",
"severe acute respiratory syndrome"
],
"relation_labels": [
"drug or therapy used for treatment",
"symptoms and signs"
]
} | SELECT ?answer WHERE { wd:Q103177 wdt:P780 ?X . ?X wdt:P2176 ?answer} |
lcquad2-16149 | Get me the name of the producer and administrator of Q/U Imaging ExperimenT? | [
"space observatory"
] | {
"entities": [
"Q7265603",
"Q189325",
"Q148578"
],
"relations": [
"P1056",
"P137"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Q/U Imaging ExperimenT",
"Jet Propulsion Laboratory",
"space observatory"
],
"relation_labels": [
"product or material produced",
"operator"
]
} | SELECT ?answer WHERE { wd:Q7265603 wdt:P137 ?X . ?X wdt:P1056 ?answer} |
lcquad2-25250 | What is Pravda's mouthpiece's communist party and which contains the word communist in its name? | [
"Communist Party of the Soviet Union"
] | {
"entities": [
"Q233591",
"Q79854",
"Q183644"
],
"relations": [
"P31",
"P2813"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"communist party",
"Communist Party of the Soviet Union",
"Pravda"
],
"relation_labels": [
"instance of",
"house publication"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q233591 . ?sbj wdt:P2813 wd:Q183644 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'communist')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23987 | t me know hilter kilter fighting whose title has the word sedate in it. | [
"Mexican drug war"
] | {
"entities": [
"Q475678",
"Q752673"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Mexican drug war",
"asymmetric warfare"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q752673 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'drug')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-21466 | Who is the { human } for Joseph Conrad's { relative } | [
"Stefan Bobrowski"
] | {
"entities": [
"Q82925",
"Q4088845",
"Q5"
],
"relations": [
"P1038",
"P31"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"Joseph Conrad",
"Stefan Bobrowski",
"human"
],
"relation_labels": [
"relative",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P1038 wd:Q82925 . ?sbj wdt:P31 wd:Q5 } |
lcquad2-20241 | Where is Zaha Hadid's architectural structure? | [
"Jockey Club Innovation Tower"
] | {
"entities": [
"Q811979",
"Q6036183",
"Q47780"
],
"relations": [
"P84",
"P31"
],
"adjacency": [
[
1,
0,
2
],
[
1,
1,
0
]
],
"entity_labels": [
"architectural structure",
"Jockey Club Innovation Tower",
"Zaha Hadid"
],
"relation_labels": [
"architect",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P84 wd:Q47780 . ?sbj wdt:P31 wd:Q811979 } |
lcquad2-9841 | What does Christopher Walken do and where does he live? | [
"television actor",
"New York City"
] | {
"entities": [
"Q10798782",
"Q185051",
"Q60"
],
"relations": [
"P106",
"P551"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"television actor",
"Christopher Walken",
"New York City"
],
"relation_labels": [
"occupation",
"residence"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q185051 wdt:P551 ?ans_1 . wd:Q185051 wdt:P106 ?ans_2 } |
lcquad2-11824 | What is José Mujica's job, whose field of work is agriculture? | [
"farmer"
] | {
"entities": [
"Q9094",
"Q11451",
"Q131512"
],
"relations": [
"P106",
"P425"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"José Mujica",
"agriculture",
"farmer"
],
"relation_labels": [
"occupation",
"field of this occupation"
]
} | SELECT ?answer WHERE { wd:Q9094 wdt:P106 ?answer . ?answer wdt:P425 wd:Q11451} |
lcquad2-13116 | Is the boyfriend of Poseidon who has girls Briareus? | [
"Gaia"
] | {
"entities": [
"Q849647",
"Q41127",
"Q93172"
],
"relations": [
"P40",
"P451"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Briareus",
"Poseidon",
"Gaia"
],
"relation_labels": [
"child",
"unmarried partner"
]
} | SELECT ?answer WHERE { wd:Q41127 wdt:P451 ?answer . ?answer wdt:P40 wd:Q849647} |
lcquad2-14885 | who division of groups played for of harry beadles ? | [
"Premier League"
] | {
"entities": [
"Q1130849",
"Q10449958",
"Q9448"
],
"relations": [
"P54",
"P118"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Liverpool F.C.",
"Harry Beadles",
"Premier League"
],
"relation_labels": [
"member of sports team",
"league"
]
} | SELECT ?answer WHERE { wd:Q10449958 wdt:P54 ?X . ?X wdt:P118 ?answer} |
lcquad2-9504 | Name the native and official (written, spoken) language of Swami-Vivekananda. | [
"English",
"Bengali"
] | {
"entities": [
"Q9610",
"Q1860",
"Q47478"
],
"relations": [
"P103",
"P1412"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"Bengali",
"English",
"Swami Vivekananda"
],
"relation_labels": [
"native language",
"languages spoken, written or signed"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q47478 wdt:P103 ?ans_1 . wd:Q47478 wdt:P1412 ?ans_2 } |
lcquad2-25076 | Disclose me me a therapywhose name consist of the word "woman" and whose Sigmund Freud psychoanalysis | [
"psychoanalysis"
] | {
"entities": [
"Q41630",
"Q9215",
"Q179661"
],
"relations": [
"P31",
"P50"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"psychoanalysis",
"Sigmund Freud",
"treatment"
],
"relation_labels": [
"instance of",
"author"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q179661 . ?sbj wdt:P50 wd:Q9215 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'psychoanalysis')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23004 | Vanessa Redgrave was assigned for the Foundation Grants. | [
"Academy Award for Best Actress"
] | {
"entities": [
"Q347879",
"Q19020",
"Q103618"
],
"relations": [
"P1411",
"P31"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Vanessa Redgrave",
"Academy Awards",
"Academy Award for Best Actress"
],
"relation_labels": [
"nominated for",
"instance of"
]
} | select distinct ?obj where { wd:Q347879 wdt:P1411 ?obj . ?obj wdt:P31 wd:Q19020 } |
lcquad2-11967 | Name something based in New Mexico that has diplomatic family members with the Caymen Islands. | [
"United States of America"
] | {
"entities": [
"Q5785",
"Q1522",
"Q30"
],
"relations": [
"P131",
"P530"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"Cayman Islands",
"New Mexico",
"United States of America"
],
"relation_labels": [
"located in the administrative territorial entity",
"diplomatic relation"
]
} | SELECT ?answer WHERE { wd:Q1522 wdt:P131 ?answer . ?answer wdt:P530 wd:Q5785} |
lcquad2-14316 | Who gave the{employed by} of {essayist} of {Pooch stories, from the Onlooker;} ? | [
"The Spectator"
] | {
"entities": [
"Q6191755",
"Q1790750",
"Q51427717"
],
"relations": [
"P108",
"P50"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"John Strachey",
"The Spectator",
"Dog stories, from the \"Spectator\";"
],
"relation_labels": [
"employer",
"author"
]
} | SELECT ?answer WHERE { wd:Q51427717 wdt:P50 ?X . ?X wdt:P108 ?answer} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.