id
stringlengths 11
13
| question
stringlengths 11
8.64k
| answers
sequence | subgraph
dict | sparql
stringlengths 49
483
|
---|---|---|---|---|
lcquad2-25025 | WHICH IS THE LITERAR GENRE THAT DECOUPLE UNION OF LIST VALUES AS QUALIFIERS AND WHICH CONTAINS THE WORD DICTIONARY IN THEIR NAME | [
"dictionary"
] | {
"entities": [
"Q223393",
"Q23766486",
"Q23622"
],
"relations": [
"P2738",
"P31"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"literary genre",
"list of values as qualifiers",
"dictionary"
],
"relation_labels": [
"disjoint union of",
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q223393 . ?sbj wdt:P2738 wd:Q23766486 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'dictionary')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23993 | What are the city which begin with the letter w | [
"Wielbark, Warmian-Masurian Voivodeship"
] | {
"entities": [
"Q999482",
"Q515"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Wielbark, Warmian-Masurian Voivodeship",
"city"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q515 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-11914 | What is connected to purview in National People's Congress, which is befuddled with China? | [
"People's Republic of China"
] | {
"entities": [
"Q148",
"Q29520",
"Q19211"
],
"relations": [
"P1001",
"P1889"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"People's Republic of China",
"China",
"National People's Congress"
],
"relation_labels": [
"applies to jurisdiction",
"different from"
]
} | SELECT ?answer WHERE { wd:Q19211 wdt:P1001 ?answer . ?answer wdt:P1889 wd:Q29520} |
lcquad2-20140 | Which protein interacts with diazepam? | [
"Gamma-aminobutyric acid type A receptor subunit alpha1"
] | {
"entities": [
"Q8054",
"Q5520260",
"Q210402"
],
"relations": [
"P31",
"P129"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"protein",
"Gamma-aminobutyric acid type A receptor subunit alpha1",
"diazepam"
],
"relation_labels": [
"instance of",
"physically interacts with"
]
} | select distinct ?sbj where { ?sbj wdt:P129 wd:Q210402 . ?sbj wdt:P31 wd:Q8054 } |
lcquad2-20356 | Who is Kate Winslet's partner? | [
"Stephen Tredre"
] | {
"entities": [
"Q202765",
"Q16013977",
"Q5"
],
"relations": [
"P31",
"P451"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Kate Winslet",
"Stephen Tredre",
"human"
],
"relation_labels": [
"instance of",
"unmarried partner"
]
} | select distinct ?sbj where { ?sbj wdt:P451 wd:Q202765 . ?sbj wdt:P31 wd:Q5 } |
lcquad2-24601 | What are the character encoding which begin with the letter Y | [
"YUSCII"
] | {
"entities": [
"Q4053427",
"Q184759"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"YUSCII",
"character encoding"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q184759 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'y')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-21366 | Who is the { lake } for { in or near the water body } of { Seattle } | [
"Lake Washington"
] | {
"entities": [
"Q23397",
"Q1323525",
"Q5083"
],
"relations": [
"P31",
"P206"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"lake",
"Lake Washington",
"Seattle"
],
"relation_labels": [
"instance of",
"located in or next to body of water"
]
} | select distinct ?obj where { wd:Q5083 wdt:P206 ?obj . ?obj wdt:P31 wd:Q23397 } |
lcquad2-13543 | Which is the admin HQ of Lufthansa whose twin cities in Turin? | [
"Cologne"
] | {
"entities": [
"Q9325",
"Q365",
"Q495"
],
"relations": [
"P190",
"P159"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Lufthansa",
"Cologne",
"Turin"
],
"relation_labels": [
"twinned administrative body",
"headquarters location"
]
} | SELECT ?answer WHERE { wd:Q9325 wdt:P159 ?answer . ?answer wdt:P190 wd:Q495} |
lcquad2-11965 | On which continent is Damavand, inside the Iran Standard Time zone? | [
"Asia"
] | {
"entities": [
"Q2392297",
"Q48",
"Q40758"
],
"relations": [
"P30",
"P421"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Iran Standard Time Zone",
"Asia",
"Damavand"
],
"relation_labels": [
"continent",
"located in time zone"
]
} | SELECT ?answer WHERE { wd:Q40758 wdt:P30 ?answer . ?answer wdt:P421 wd:Q2392297} |
lcquad2-25108 | Name metropolis where many films are shot that contains the phrase "Karachi" in its identify | [
"Karachi"
] | {
"entities": [
"Q19359121",
"Q8660",
"Q200250"
],
"relations": [
"P31",
"P1740"
],
"adjacency": [
[
1,
0,
2
],
[
1,
1,
0
]
],
"entity_labels": [
"Category:Films shot in Karachi",
"Karachi",
"metropolis"
],
"relation_labels": [
"instance of",
"category for films shot at this location"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q200250 . ?sbj wdt:P1740 wd:Q19359121 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'karachi')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-22862 | who church building for supporter holy person of Joseph? | [
"Church of Saint Joseph in Jablunkov"
] | {
"entities": [
"Q16970",
"Q97373542",
"Q128267"
],
"relations": [
"P31",
"P417"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"church building",
"Church of Saint Joseph in Jablunkov",
"Joseph"
],
"relation_labels": [
"instance of",
"patron saint"
]
} | select distinct ?sbj where { ?sbj wdt:P417 wd:Q128267 . ?sbj wdt:P31 wd:Q16970 } |
lcquad2-20294 | Say the put where human burial is conceivable in Granada. | [
"Enrique Gozalbes Cravioto"
] | {
"entities": [
"Q44520693",
"Q8810",
"Q5"
],
"relations": [
"P119",
"P31"
],
"adjacency": [
[
0,
0,
1
],
[
0,
1,
2
]
],
"entity_labels": [
"Enrique Gozalbes Cravioto",
"Granada",
"human"
],
"relation_labels": [
"place of burial",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P119 wd:Q8810 . ?sbj wdt:P31 wd:Q5 } |
lcquad2-16176 | what was the first school that gadolinium attended? | [
"Mines ParisTech"
] | {
"entities": [
"Q1832",
"Q1189954",
"Q124045"
],
"relations": [
"P69",
"P61"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"gadolinium",
"Mines ParisTech",
"Jean Charles Galissard de Marignac"
],
"relation_labels": [
"educated at",
"discoverer or inventor"
]
} | SELECT ?answer WHERE { wd:Q1832 wdt:P61 ?X . ?X wdt:P69 ?answer} |
lcquad2-25226 | WHat brain region providing superior cerebellar artery contains in its name the word "cerebellum?" | [
"cerebellum"
] | {
"entities": [
"Q1620186",
"Q707592",
"Q130983"
],
"relations": [
"P31",
"P2286"
],
"adjacency": [
[
2,
0,
0
],
[
2,
1,
1
]
],
"entity_labels": [
"brain region",
"superior cerebellar artery",
"cerebellum"
],
"relation_labels": [
"instance of",
"arterial supply"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1620186 . ?sbj wdt:P2286 wd:Q707592 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'cerebellum')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-16095 | What is the forerunner of the contributing variables to World War I? | [
"Meurthe"
] | {
"entities": [
"Q1270623",
"Q155144",
"Q361"
],
"relations": [
"P1479",
"P1365"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"Meurthe",
"Alsace-Lorraine",
"World War I"
],
"relation_labels": [
"has contributing factor",
"replaces"
]
} | SELECT ?answer WHERE { wd:Q361 wdt:P1479 ?X . ?X wdt:P1365 ?answer} |
lcquad2-10025 | Give me the names of the characters and the genre in Hamlet? | [
"Osric",
"tragedy"
] | {
"entities": [
"Q11801381",
"Q41567",
"Q80930"
],
"relations": [
"P674",
"P136"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"Osric",
"Hamlet",
"tragedy"
],
"relation_labels": [
"characters",
"genre"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q41567 wdt:P674 ?ans_1 . wd:Q41567 wdt:P136 ?ans_2 } |
lcquad2-22062 | The performer sang a Janet Jackson song, what was it? | [
"Nasty"
] | {
"entities": [
"Q7366",
"Q928109",
"Q131324"
],
"relations": [
"P31",
"P175"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"song",
"Nasty",
"Janet Jackson"
],
"relation_labels": [
"instance of",
"performer"
]
} | select distinct ?sbj where { ?sbj wdt:P175 wd:Q131324 . ?sbj wdt:P31 wd:Q7366 } |
lcquad2-25199 | Each year a well known day for shopping happens on December 26th and incorporates "boxing" within the title; what day is it? | [
"Boxing Day"
] | {
"entities": [
"Q43516519",
"Q2761",
"Q956699"
],
"relations": [
"P837",
"P31"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"shopping day",
"December 26",
"Boxing Day"
],
"relation_labels": [
"day in year for periodic occurrence",
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q43516519 . ?sbj wdt:P837 wd:Q2761 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'boxing')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-13699 | Who has child of Æthelred the Unready who is the sister of Alfred Aetheling? | [
"Eadred Ætheling"
] | {
"entities": [
"Q183499",
"Q4364607",
"Q35618"
],
"relations": [
"P3373",
"P40"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Æthelred the Unready",
"Eadred Ætheling",
"Alfred Aetheling"
],
"relation_labels": [
"sibling",
"child"
]
} | SELECT ?answer WHERE { wd:Q183499 wdt:P40 ?answer . ?answer wdt:P3373 wd:Q35618} |
lcquad2-22423 | Where was the book of the history of Israel initially composed? | [
"Israel"
] | {
"entities": [
"Q801",
"Q2696109",
"Q3624078"
],
"relations": [
"P31",
"P2184"
],
"adjacency": [
[
0,
1,
1
],
[
0,
0,
2
]
],
"entity_labels": [
"Israel",
"history of Israel",
"sovereign state"
],
"relation_labels": [
"instance of",
"history of topic"
]
} | select distinct ?sbj where { ?sbj wdt:P2184 wd:Q2696109 . ?sbj wdt:P31 wd:Q3624078 } |
lcquad2-17661 | Name the domain where Oscar Wisting acquired the participation for. | [
"Martin Rønne"
] | {
"entities": [
"Q8414",
"Q11722624",
"Q553187"
],
"relations": [
"P1344",
"P710"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Amundsen's South Pole expedition",
"Martin Rønne",
"Oscar Wisting"
],
"relation_labels": [
"participant in",
"participant"
]
} | SELECT ?answer WHERE { wd:Q553187 wdt:P1344 ?X . ?X wdt:P710 ?answer} |
lcquad2-23469 | Which famine name starts with the word turnip. | [
"Turnip Winter"
] | {
"entities": [
"Q168247",
"Q1525064"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"famine",
"Turnip Winter"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q168247 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'turnip')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-15463 | Who composed the script to "The blame in Our Stars | [
"J. D. Salinger"
] | {
"entities": [
"Q14704171",
"Q79904",
"Q630446"
],
"relations": [
"P737",
"P1877"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"The Fault in Our Stars",
"J. D. Salinger",
"John Green"
],
"relation_labels": [
"influenced by",
"after a work by"
]
} | SELECT ?answer WHERE { wd:Q14704171 wdt:P1877 ?X . ?X wdt:P737 ?answer} |
lcquad2-23260 | Tell memineral assortment whose title has the word zeiringite in it. | [
"zeiringite"
] | {
"entities": [
"Q429795",
"Q184955"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"mineral variety",
"zeiringite"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q429795 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'zeiringite')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-24774 | What are the unary operation that begins with s | [
"successor function"
] | {
"entities": [
"Q7632653",
"Q657596"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"successor function",
"unary operation"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q657596 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-9767 | Methanol is found in which taxon and what is it's role? | [
"Mycoacia uda",
"solvent"
] | {
"entities": [
"Q146505",
"Q10606622",
"Q14982"
],
"relations": [
"P703",
"P2868"
],
"adjacency": [
[
2,
1,
0
],
[
2,
0,
1
]
],
"entity_labels": [
"solvent",
"Mycoacia uda",
"methanol"
],
"relation_labels": [
"found in taxon",
"subject has role"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q14982 wdt:P2868 ?ans_1 . wd:Q14982 wdt:P703 ?ans_2 } |
lcquad2-15966 | Who is the consultant utilized by Halton Arp? | [
"University of Göttingen"
] | {
"entities": [
"Q453729",
"Q152838",
"Q57299"
],
"relations": [
"P184",
"P108"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Halton Arp",
"University of Göttingen",
"Walter Baade"
],
"relation_labels": [
"doctoral advisor",
"employer"
]
} | SELECT ?answer WHERE { wd:Q453729 wdt:P184 ?X . ?X wdt:P108 ?answer} |
lcquad2-21739 | Who was the author of "Lolita"? | [
"Vladimir Nabokov"
] | {
"entities": [
"Q127149",
"Q36591",
"Q5"
],
"relations": [
"P31",
"P800"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"Lolita",
"Vladimir Nabokov",
"human"
],
"relation_labels": [
"instance of",
"notable work"
]
} | select distinct ?sbj where { ?sbj wdt:P800 wd:Q127149 . ?sbj wdt:P31 wd:Q5 } |
lcquad2-16193 | Who produces and makes the Glock 20? | [
"Glock 23"
] | {
"entities": [
"Q1015606",
"Q639571",
"Q702135"
],
"relations": [
"P1056",
"P176"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Glock 23",
"Glock 20",
"Glock Ges.m.b.H."
],
"relation_labels": [
"product or material produced",
"manufacturer"
]
} | SELECT ?answer WHERE { wd:Q639571 wdt:P176 ?X . ?X wdt:P1056 ?answer} |
lcquad2-20414 | What is the taxon that causes syphilis? | [
"Treponema pallidum"
] | {
"entities": [
"Q41083",
"Q156007",
"Q16521"
],
"relations": [
"P31",
"P828"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"syphilis",
"Treponema pallidum",
"taxon"
],
"relation_labels": [
"instance of",
"has cause"
]
} | select distinct ?obj where { wd:Q41083 wdt:P828 ?obj . ?obj wdt:P31 wd:Q16521 } |
lcquad2-20717 | Who is the doctoral counsel of Richard Dawkins | [
"Niko Tinbergen"
] | {
"entities": [
"Q44461",
"Q5",
"Q153890"
],
"relations": [
"P184",
"P31"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Richard Dawkins",
"human",
"Niko Tinbergen"
],
"relation_labels": [
"doctoral advisor",
"instance of"
]
} | select distinct ?obj where { wd:Q44461 wdt:P184 ?obj . ?obj wdt:P31 wd:Q5 } |
lcquad2-23085 | What current nation utilized to be the Footrest Realm | [
"Turkey"
] | {
"entities": [
"Q43",
"Q1323642",
"Q12560"
],
"relations": [
"P31",
"P1365"
],
"adjacency": [
[
0,
1,
2
],
[
0,
0,
1
]
],
"entity_labels": [
"Turkey",
"transcontinental country",
"Ottoman Empire"
],
"relation_labels": [
"instance of",
"replaces"
]
} | select distinct ?sbj where { ?sbj wdt:P1365 wd:Q12560 . ?sbj wdt:P31 wd:Q1323642 } |
lcquad2-9790 | What dialect and topography are found in Kurdistan? | [
"Middle East",
"Arabic"
] | {
"entities": [
"Q7204",
"Q13955",
"Q41470"
],
"relations": [
"P706",
"P2936"
],
"adjacency": [
[
2,
1,
1
],
[
2,
0,
0
]
],
"entity_labels": [
"Middle East",
"Arabic",
"Kurdistan"
],
"relation_labels": [
"located in/on physical feature",
"language used"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q41470 wdt:P2936 ?ans_1 . wd:Q41470 wdt:P706 ?ans_2 } |
lcquad2-15937 | What is the auxiliary company that works for John McDowell? | [
"University of Pittsburgh Graduate School of Public and International Affairs"
] | {
"entities": [
"Q16902358",
"Q1252398",
"Q235034"
],
"relations": [
"P108",
"P355"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"University of Pittsburgh Graduate School of Public and International Affairs",
"John McDowell",
"University of Pittsburgh"
],
"relation_labels": [
"employer",
"has subsidiary"
]
} | SELECT ?answer WHERE { wd:Q1252398 wdt:P108 ?X . ?X wdt:P355 ?answer} |
lcquad2-22515 | In the weapon from the Manhattan Project, what material or product was used? | [
"The Gadget"
] | {
"entities": [
"Q127050",
"Q12802",
"Q2364402"
],
"relations": [
"P31",
"P1056"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Manhattan Project",
"nuclear weapon",
"The Gadget"
],
"relation_labels": [
"instance of",
"product or material produced"
]
} | select distinct ?obj where { wd:Q127050 wdt:P1056 ?obj . ?obj wdt:P31 wd:Q12802 } |
lcquad2-22627 | Which artifacts are composed in hieroglyphics? | [
"Rosetta Stone"
] | {
"entities": [
"Q220659",
"Q132659",
"Q48584"
],
"relations": [
"P282",
"P31"
],
"adjacency": [
[
2,
0,
1
],
[
2,
1,
0
]
],
"entity_labels": [
"archaeological artifact",
"Egyptian hieroglyphs",
"Rosetta Stone"
],
"relation_labels": [
"writing system",
"instance of"
]
} | select distinct ?sbj where { ?sbj wdt:P282 wd:Q132659 . ?sbj wdt:P31 wd:Q220659 } |
lcquad2-15285 | What districts have the topographical sort region of kyanite? | [
"Vienna"
] | {
"entities": [
"Q1741",
"Q40",
"Q193450"
],
"relations": [
"P150",
"P2695"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"Vienna",
"Austria",
"kyanite"
],
"relation_labels": [
"contains the administrative territorial entity",
"type locality (geology)"
]
} | SELECT ?answer WHERE { wd:Q193450 wdt:P2695 ?X . ?X wdt:P150 ?answer} |
lcquad2-15145 | Where is the head office of the pioneer of depth magnetron? | [
"Birmingham"
] | {
"entities": [
"Q194154",
"Q223429",
"Q2256"
],
"relations": [
"P159",
"P61"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"cavity magnetron",
"University of Birmingham",
"Birmingham"
],
"relation_labels": [
"headquarters location",
"discoverer or inventor"
]
} | SELECT ?answer WHERE { wd:Q194154 wdt:P61 ?X . ?X wdt:P159 ?answer} |
lcquad2-23875 | What is the French Constitution's name? | [
"French Constitution of 1791"
] | {
"entities": [
"Q971176",
"Q7755"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"French Constitution of 1791",
"constitution"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q7755 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'french')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23749 | Let me know craftsmanship shape whose title has the word form in their name | [
"relief sculpture"
] | {
"entities": [
"Q245117",
"Q56055944"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"relief sculpture",
"type of art"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q56055944 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'sculpture')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-15973 | What is the Super Crush Bros. Characters Occupations? | [
"The Legend of Zelda"
] | {
"entities": [
"Q2778220",
"Q12393",
"Q1067046"
],
"relations": [
"P674",
"P1441"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Super Smash Bros.",
"The Legend of Zelda",
"Princess Zelda"
],
"relation_labels": [
"characters",
"present in work"
]
} | SELECT ?answer WHERE { wd:Q2778220 wdt:P674 ?X . ?X wdt:P1441 ?answer} |
lcquad2-24740 | What are the radiometric dating which begin with the letter d | [
"ball lightning"
] | {
"entities": [
"Q192962",
"Q427085"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"ball lightning",
"atmospheric electricity"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q427085 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'b')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23101 | Tell me type of quantum particle whose identify has the phrase σ0 in it. | [
"Σ0"
] | {
"entities": [
"Q22675015",
"Q17258131"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"type of quantum particle",
"Σ0"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q22675015 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'σ0')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-24197 | : What are the family of isomeric compounds which begin with the letter x | [
"xylenesulfonic acid"
] | {
"entities": [
"Q15711994",
"Q72516686"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"family of isomeric compounds",
"xylenesulfonic acid"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15711994 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'x')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-22541 | What theater is worked by the College of Toronto? | [
"Hart House Theatre"
] | {
"entities": [
"Q180865",
"Q14875168",
"Q24354"
],
"relations": [
"P31",
"P137"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"University of Toronto",
"Hart House Theatre",
"theater"
],
"relation_labels": [
"instance of",
"operator"
]
} | select distinct ?sbj where { ?sbj wdt:P137 wd:Q180865 . ?sbj wdt:P31 wd:Q24354 } |
lcquad2-13099 | Which is the start vicinity of Chopper Read, that have county seat of Victoria? | [
"Melbourne"
] | {
"entities": [
"Q36687",
"Q3141",
"Q2428420"
],
"relations": [
"P1376",
"P19"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"Victoria",
"Melbourne",
"Chopper Read"
],
"relation_labels": [
"capital of",
"place of birth"
]
} | SELECT ?answer WHERE { wd:Q2428420 wdt:P19 ?answer . ?answer wdt:P1376 wd:Q36687} |
lcquad2-9658 | What genre and record label is Soundgarden? | [
"grunge",
"A&M Records"
] | {
"entities": [
"Q277626",
"Q174817",
"Q11365"
],
"relations": [
"P264",
"P136"
],
"adjacency": [
[
1,
0,
0
],
[
1,
1,
2
]
],
"entity_labels": [
"A&M Records",
"Soundgarden",
"grunge"
],
"relation_labels": [
"record label",
"genre"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q174817 wdt:P264 ?ans_1 . wd:Q174817 wdt:P136 ?ans_2 } |
lcquad2-21884 | What movies has Kate Winslet showed up in? | [
"Kate Winslet filmography"
] | {
"entities": [
"Q15545692",
"Q202765",
"Q1371849"
],
"relations": [
"P31",
"P1283"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Kate Winslet filmography",
"Kate Winslet",
"filmography"
],
"relation_labels": [
"instance of",
"filmography"
]
} | select distinct ?obj where { wd:Q202765 wdt:P1283 ?obj . ?obj wdt:P31 wd:Q1371849 } |
lcquad2-16782 | who brother or sister of painters of the day dream ? | [
"Christina Rossetti"
] | {
"entities": [
"Q186748",
"Q19897951",
"Q236596"
],
"relations": [
"P3373",
"P170"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Dante Gabriel Rossetti",
"The Day Dream",
"Christina Rossetti"
],
"relation_labels": [
"sibling",
"creator"
]
} | SELECT ?answer WHERE { wd:Q19897951 wdt:P170 ?X . ?X wdt:P3373 ?answer} |
lcquad2-17764 | Who is {guide} of {music by} {The Steel Trap} ? | [
"Felix Blumenfeld"
] | {
"entities": [
"Q1349550",
"Q7766452",
"Q317033"
],
"relations": [
"P86",
"P1066"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"Felix Blumenfeld",
"The Steel Trap",
"Dimitri Tiomkin"
],
"relation_labels": [
"composer",
"student of"
]
} | SELECT ?answer WHERE { wd:Q7766452 wdt:P86 ?X . ?X wdt:P1066 ?answer} |
lcquad2-13125 | Where did Arne Jacobsen kick the bucket, which is additionally the province situate for Denmark? | [
"Copenhagen"
] | {
"entities": [
"Q273572",
"Q1748",
"Q35"
],
"relations": [
"P1376",
"P20"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Arne Jacobsen",
"Copenhagen",
"Denmark"
],
"relation_labels": [
"capital of",
"place of death"
]
} | SELECT ?answer WHERE { wd:Q273572 wdt:P20 ?answer . ?answer wdt:P1376 wd:Q35} |
lcquad2-16761 | Name the higher taxon of Apicomplexa's taxonomic rank? | [
"kingdom"
] | {
"entities": [
"Q10892",
"Q193030",
"Q36732"
],
"relations": [
"P105",
"P171"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"protist",
"Apicomplexa",
"kingdom"
],
"relation_labels": [
"taxon rank",
"parent taxon"
]
} | SELECT ?answer WHERE { wd:Q193030 wdt:P171 ?X . ?X wdt:P105 ?answer} |
lcquad2-17717 | Which {colour filter} is {inventor of} of {153686 Pathall} ? | [
"infrared radiation"
] | {
"entities": [
"Q3597538",
"Q11388",
"Q840332"
],
"relations": [
"P1227",
"P61"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"153686 Pathall",
"infrared radiation",
"Sloan Digital Sky Survey"
],
"relation_labels": [
"astronomical filter",
"discoverer or inventor"
]
} | SELECT ?answer WHERE { wd:Q3597538 wdt:P61 ?X . ?X wdt:P1227 ?answer} |
lcquad2-13392 | Where was Paul VI born in, which is adjoining to Cellatica? | [
"Concesio"
] | {
"entities": [
"Q16975",
"Q103883",
"Q104074"
],
"relations": [
"P19",
"P47"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Paul VI",
"Cellatica",
"Concesio"
],
"relation_labels": [
"place of birth",
"shares border with"
]
} | SELECT ?answer WHERE { wd:Q16975 wdt:P19 ?answer . ?answer wdt:P47 wd:Q103883} |
lcquad2-25502 | What does Spain's municipality contain Bobadilla settlement and what does it begin with? | [
"Granada"
] | {
"entities": [
"Q5730865",
"Q8810",
"Q2074737"
],
"relations": [
"P31",
"P1383"
],
"adjacency": [
[
1,
0,
2
],
[
1,
1,
0
]
],
"entity_labels": [
"Bobadilla",
"Granada",
"municipality of Spain"
],
"relation_labels": [
"instance of",
"contains settlement"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2074737 . ?sbj wdt:P1383 wd:Q5730865 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'g')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-25599 | Name a science award conferred with the aid of Columbia Universit that starts offevolved with letter P | [
"Pulitzer Prize"
] | {
"entities": [
"Q49088",
"Q11448906",
"Q46525"
],
"relations": [
"P1027",
"P31"
],
"adjacency": [
[
2,
1,
1
],
[
2,
0,
0
]
],
"entity_labels": [
"Columbia University",
"science award",
"Pulitzer Prize"
],
"relation_labels": [
"conferred by",
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q11448906 . ?sbj wdt:P1027 wd:Q49088 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'p')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-12600 | What was granted to Lothat Matthaus when Michel Platini was the 1st put medalist? | [
"Ballon d'Or"
] | {
"entities": [
"Q4261",
"Q166177",
"Q36386"
],
"relations": [
"P1346",
"P166"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"Michel Platini",
"Ballon d'Or",
"Lothar Matthäus"
],
"relation_labels": [
"winner",
"award received"
]
} | SELECT ?answer WHERE { wd:Q36386 wdt:P166 ?answer . ?answer wdt:P1346 wd:Q4261} |
lcquad2-21352 | Where is the location of Bucharest? | [
"Sector 6"
] | {
"entities": [
"Q15921300",
"Q167280",
"Q19660"
],
"relations": [
"P31",
"P1383"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"sector of Bucharest",
"Sector 6",
"Bucharest"
],
"relation_labels": [
"instance of",
"contains settlement"
]
} | select distinct ?obj where { wd:Q19660 wdt:P1383 ?obj . ?obj wdt:P31 wd:Q15921300 } |
lcquad2-22036 | Where did Exodus ' Biblical story take place? | [
"Ancient Egypt"
] | {
"entities": [
"Q11768",
"Q1620908",
"Q9190"
],
"relations": [
"P840",
"P31"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Ancient Egypt",
"historical region",
"Exodus"
],
"relation_labels": [
"narrative location",
"instance of"
]
} | select distinct ?obj where { wd:Q9190 wdt:P840 ?obj . ?obj wdt:P31 wd:Q1620908 } |
lcquad2-23281 | What are the skills in their name that contain the word sensitivity? | [
"Sensitivity"
] | {
"entities": [
"Q1339274",
"Q1413287"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Sensitivity",
"social skill"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1413287 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'sensitivity')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-17569 | Which is { builder's work } { Kosmos 48 }? | [
"communications satellite"
] | {
"entities": [
"Q1119663",
"Q149918",
"Q763402"
],
"relations": [
"P1056",
"P176"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"Kosmos 48",
"communications satellite",
"S.P. Korolev Rocket and Space Corporation Energia"
],
"relation_labels": [
"product or material produced",
"manufacturer"
]
} | SELECT ?answer WHERE { wd:Q1119663 wdt:P176 ?X . ?X wdt:P1056 ?answer} |
lcquad2-15441 | What prize did Hristo Stoichkov win? | [
"Fabio Cannavaro"
] | {
"entities": [
"Q187125",
"Q166177",
"Q102027"
],
"relations": [
"P1346",
"P166"
],
"adjacency": [
[
0,
1,
1
],
[
1,
0,
2
]
],
"entity_labels": [
"Hristo Stoichkov",
"Ballon d'Or",
"Fabio Cannavaro"
],
"relation_labels": [
"winner",
"award received"
]
} | SELECT ?answer WHERE { wd:Q187125 wdt:P166 ?X . ?X wdt:P1346 ?answer} |
lcquad2-23687 | What are the card amusement which begin with the letter uno | [
"Uno"
] | {
"entities": [
"Q142714",
"Q17267"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"card game",
"Uno"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q142714 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'uno')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-14870 | The original glam metal is in what timezone? | [
"UTC±00:00"
] | {
"entities": [
"Q145",
"Q188539",
"Q6574"
],
"relations": [
"P495",
"P421"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"United Kingdom",
"glam metal",
"UTC±00:00"
],
"relation_labels": [
"country of origin",
"located in time zone"
]
} | SELECT ?answer WHERE { wd:Q188539 wdt:P495 ?X . ?X wdt:P421 ?answer} |
lcquad2-24394 | WHICH ACADEMIC DEGREE STARTS BY THE LETTER T | [
"Teachers' Training Certificate"
] | {
"entities": [
"Q98793260",
"Q189533"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Teachers' Training Certificate",
"academic degree"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q189533 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-16347 | WHO IS LTHE Originator OF SHAPUR II Tradition? | [
"action film"
] | {
"entities": [
"Q103569",
"Q988925",
"Q188473"
],
"relations": [
"P1441",
"P136"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Alien",
"Ellen Ripley",
"action film"
],
"relation_labels": [
"present in work",
"genre"
]
} | SELECT ?answer WHERE { wd:Q988925 wdt:P1441 ?X . ?X wdt:P136 ?answer} |
lcquad2-23649 | Name the castle which has the word odenburg in it? | [
"Ödenburg"
] | {
"entities": [
"Q23413",
"Q293934"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"castle",
"Ödenburg"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q23413 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'ödenburg')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-21932 | Wellington is what island country's capital? | [
"New Zealand"
] | {
"entities": [
"Q664",
"Q112099",
"Q23661"
],
"relations": [
"P31",
"P17"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"New Zealand",
"island nation",
"Wellington"
],
"relation_labels": [
"instance of",
"country"
]
} | select distinct ?obj where { wd:Q23661 wdt:P17 ?obj . ?obj wdt:P31 wd:Q112099 } |
lcquad2-22536 | When was the endeavored upset d'etat amid the run the show of Lord Juan Carlos I of Spain? | [
"1981 Spanish coup d'état attempt"
] | {
"entities": [
"Q19943",
"Q25906438",
"Q215337"
],
"relations": [
"P793",
"P31"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Juan Carlos I of Spain",
"attempted coup d'état",
"1981 Spanish coup d'état attempt"
],
"relation_labels": [
"significant event",
"instance of"
]
} | select distinct ?obj where { wd:Q19943 wdt:P793 ?obj . ?obj wdt:P31 wd:Q25906438 } |
lcquad2-13509 | Which is another to Xinjiang, that has arrondissements as Haidong? | [
"Qinghai"
] | {
"entities": [
"Q45833",
"Q984788",
"Q34800"
],
"relations": [
"P150",
"P47"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Qinghai",
"Haidong",
"Xinjiang"
],
"relation_labels": [
"contains the administrative territorial entity",
"shares border with"
]
} | SELECT ?answer WHERE { wd:Q34800 wdt:P47 ?answer . ?answer wdt:P150 wd:Q984788} |
lcquad2-12863 | What is the shape of washing machine whose feature of a polytope is parallelogram? | [
"parallelepiped"
] | {
"entities": [
"Q181658",
"Q45867",
"Q124441"
],
"relations": [
"P1312",
"P1419"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"parallelepiped",
"parallelogram",
"washing machine"
],
"relation_labels": [
"has facet polytope",
"shape"
]
} | SELECT ?answer WHERE { wd:Q124441 wdt:P1419 ?answer . ?answer wdt:P1312 wd:Q45867} |
lcquad2-12180 | Who has a surname of Ueda Akinari that is the equivalent of Uwada? | [
"Ueda"
] | {
"entities": [
"Q24090415",
"Q26000353",
"Q714175"
],
"relations": [
"P460",
"P734"
],
"adjacency": [
[
2,
1,
0
],
[
0,
0,
1
]
],
"entity_labels": [
"Ueda",
"Uwada",
"Ueda Akinari"
],
"relation_labels": [
"said to be the same as",
"family name"
]
} | SELECT ?answer WHERE { wd:Q714175 wdt:P734 ?answer . ?answer wdt:P460 wd:Q26000353} |
lcquad2-21217 | What scholarly character does The Catcher within the Rye storyteller have? | [
"Holden Caulfield"
] | {
"entities": [
"Q183883",
"Q3658341",
"Q720235"
],
"relations": [
"P31",
"P2438"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"The Catcher in the Rye",
"literary character",
"Holden Caulfield"
],
"relation_labels": [
"instance of",
"narrator"
]
} | select distinct ?obj where { wd:Q183883 wdt:P2438 ?obj . ?obj wdt:P31 wd:Q3658341 } |
lcquad2-14960 | What is sweetbread made of? | [
"knuckle"
] | {
"entities": [
"Q2935",
"Q49951",
"Q10498626"
],
"relations": [
"P1672",
"P1582"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"calf",
"sweetbread",
"knuckle"
],
"relation_labels": [
"this taxon is source of",
"natural product of taxon"
]
} | SELECT ?answer WHERE { wd:Q49951 wdt:P1582 ?X . ?X wdt:P1672 ?answer} |
lcquad2-20722 | Which Wikimedia article records Yekaterinburg monuments? | [
"list of cultural heritage monuments in Yekaterinburg (center)"
] | {
"entities": [
"Q15725910",
"Q887",
"Q13406463"
],
"relations": [
"P31",
"P1456"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"list of cultural heritage monuments in Yekaterinburg (center)",
"Yekaterinburg",
"Wikimedia list article"
],
"relation_labels": [
"instance of",
"list of monuments"
]
} | select distinct ?obj where { wd:Q887 wdt:P1456 ?obj . ?obj wdt:P31 wd:Q13406463 } |
lcquad2-13502 | The sillimanite of the American Academy of Arts and Sciences is named after which member? | [
"Benjamin Silliman, Sr."
] | {
"entities": [
"Q463303",
"Q817692",
"Q119632"
],
"relations": [
"P138",
"P463"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"American Academy of Arts and Sciences",
"Benjamin Silliman, Sr.",
"sillimanite"
],
"relation_labels": [
"named after",
"member of"
]
} | SELECT ?answer WHERE { wd:Q119632 wdt:P138 ?answer . ?answer wdt:P463 wd:Q463303} |
lcquad2-15608 | What is the name of the company that is worked under J.M.Coetzee? | [
"University of Chicago Press"
] | {
"entities": [
"Q1814982",
"Q131252",
"Q43293"
],
"relations": [
"P108",
"P355"
],
"adjacency": [
[
2,
0,
1
],
[
1,
1,
0
]
],
"entity_labels": [
"University of Chicago Press",
"University of Chicago",
"J. M. Coetzee"
],
"relation_labels": [
"employer",
"has subsidiary"
]
} | SELECT ?answer WHERE { wd:Q43293 wdt:P108 ?X . ?X wdt:P355 ?answer} |
lcquad2-23874 | WHat is the classification scheme containing in its name the word "type" | [
"building type"
] | {
"entities": [
"Q811102",
"Q5962346"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"building type",
"classification system"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q5962346 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'type')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-24612 | What are the cryptocurrency which begin with the letter z | [
"Zcoin"
] | {
"entities": [
"Q13479982",
"Q85817021"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"cryptocurrency",
"Zcoin"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q13479982 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'z')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23285 | Disclose me armed forces whose name has the word wehrmacht in it. | [
"Wehrmacht"
] | {
"entities": [
"Q128781",
"Q772547"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Wehrmacht",
"armed forces"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q772547 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wehrmacht')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-25396 | What what is public excursion day in yr for periodic incidence by way of 18 Tishrei which begins with letter s | [
"Sukkot"
] | {
"entities": [
"Q1197685",
"Q182242",
"Q2912433"
],
"relations": [
"P837",
"P31"
],
"adjacency": [
[
1,
1,
0
],
[
1,
0,
2
]
],
"entity_labels": [
"public holiday",
"Sukkot",
"18 Tishrei"
],
"relation_labels": [
"day in year for periodic occurrence",
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1197685 . ?sbj wdt:P837 wd:Q2912433 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-15870 | What is the architecture firm of based in Athletics at the 2008 Summer Olympics – Men's lengthy bounce ? | [
"Omwro chino"
] | {
"entities": [
"Q160115",
"Q917323",
"Q133525"
],
"relations": [
"P84",
"P276"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Omwro chino",
"athletics at the 2008 Summer Olympics – men's long jump",
"Beijing National Stadium"
],
"relation_labels": [
"architect",
"location"
]
} | SELECT ?answer WHERE { wd:Q917323 wdt:P276 ?X . ?X wdt:P84 ?answer} |
lcquad2-20812 | What is the official dialect of the Hassock Empire? | [
"Ottoman Turkish"
] | {
"entities": [
"Q36730",
"Q38058796",
"Q12560"
],
"relations": [
"P37",
"P31"
],
"adjacency": [
[
2,
0,
0
],
[
0,
1,
1
]
],
"entity_labels": [
"Ottoman Turkish",
"extinct language",
"Ottoman Empire"
],
"relation_labels": [
"official language",
"instance of"
]
} | select distinct ?obj where { wd:Q12560 wdt:P37 ?obj . ?obj wdt:P31 wd:Q38058796 } |
lcquad2-9627 | Describe the history and geography of Mesopotamia. | [
"geography of Mesopotamia",
"history of Mesopotamia"
] | {
"entities": [
"Q3123364",
"Q11767",
"Q2481441"
],
"relations": [
"P2633",
"P2184"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"geography of Mesopotamia",
"Mesopotamia",
"history of Mesopotamia"
],
"relation_labels": [
"geography of topic",
"history of topic"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q11767 wdt:P2184 ?ans_1 . wd:Q11767 wdt:P2633 ?ans_2 } |
lcquad2-23648 | Which legal case as the word wei in it? | [
"United States v. Dotterweich"
] | {
"entities": [
"Q7893269",
"Q2334719"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"United States v. Dotterweich",
"legal case"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2334719 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'wei')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-20578 | What is the protein that physically interatomic with erythromycin? | [
"Motilin receptor"
] | {
"entities": [
"Q213511",
"Q8054",
"Q12746111"
],
"relations": [
"P31",
"P129"
],
"adjacency": [
[
0,
1,
2
],
[
2,
0,
1
]
],
"entity_labels": [
"erythromycin",
"protein",
"Motilin receptor"
],
"relation_labels": [
"instance of",
"physically interacts with"
]
} | select distinct ?obj where { wd:Q213511 wdt:P129 ?obj . ?obj wdt:P31 wd:Q8054 } |
lcquad2-17251 | Let me know which company created the iPod? | [
"Apple Sales International"
] | {
"entities": [
"Q312",
"Q9479",
"Q105810600"
],
"relations": [
"P178",
"P355"
],
"adjacency": [
[
1,
0,
0
],
[
0,
1,
2
]
],
"entity_labels": [
"Apple",
"iPod",
"Apple Sales International"
],
"relation_labels": [
"developer",
"has subsidiary"
]
} | SELECT ?answer WHERE { wd:Q9479 wdt:P178 ?X . ?X wdt:P355 ?answer} |
lcquad2-16793 | For the world record in High Jump, what sport would be played? | [
"athletics"
] | {
"entities": [
"Q542",
"Q59632",
"Q165704"
],
"relations": [
"P641",
"P2869"
],
"adjacency": [
[
2,
1,
1
],
[
1,
0,
0
]
],
"entity_labels": [
"athletics",
"Women's high jump world record progression",
"high jump"
],
"relation_labels": [
"sport",
"record or record progression"
]
} | SELECT ?answer WHERE { wd:Q165704 wdt:P2869 ?X . ?X wdt:P641 ?answer} |
lcquad2-12014 | What is the motion photograph studio which has made 'The Archers', which has acquired the award 'Satellite Award for Best Miniseries'? | [
"BBC"
] | {
"entities": [
"Q7426020",
"Q386813",
"Q9531"
],
"relations": [
"P166",
"P272"
],
"adjacency": [
[
1,
1,
2
],
[
2,
0,
0
]
],
"entity_labels": [
"Satellite Award for Best Miniseries",
"The Archers",
"BBC"
],
"relation_labels": [
"award received",
"production company"
]
} | SELECT ?answer WHERE { wd:Q386813 wdt:P272 ?answer . ?answer wdt:P166 wd:Q7426020} |
lcquad2-25093 | WHICH IS THE MINOR BASILICA THAT ARCHITECTURAL STYLE RENAISSANCE ARCHITECTURE AND WHICH CONTAINS THE WORD SANTI IN THEIR NAME | [
"Santi Bartolomeo e Gaetano"
] | {
"entities": [
"Q3330391",
"Q236122",
"Q120560"
],
"relations": [
"P31",
"P149"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"Santi Bartolomeo e Gaetano",
"Renaissance architecture",
"minor basilica"
],
"relation_labels": [
"instance of",
"architectural style"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q120560 . ?sbj wdt:P149 wd:Q236122 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'santi')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-14483 | Which music sort is played by the Range? | [
"bebop"
] | {
"entities": [
"Q17062340",
"Q105513",
"Q1658835"
],
"relations": [
"P175",
"P136"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"Spectrum",
"bebop",
"Illinois Jacquet"
],
"relation_labels": [
"performer",
"genre"
]
} | SELECT ?answer WHERE { wd:Q17062340 wdt:P175 ?X . ?X wdt:P136 ?answer} |
lcquad2-23497 | Let me know affiliation football alliance whose title has the word serie in it. | [
"eSerie A"
] | {
"entities": [
"Q15991303",
"Q86506910"
],
"relations": [
"P31"
],
"adjacency": [
[
1,
0,
0
]
],
"entity_labels": [
"association football league",
"eSerie A"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15991303 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'serie')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-17221 | From what county seat in England are the Smashing Pumpkins? | [
"Cook County"
] | {
"entities": [
"Q1297",
"Q184217",
"Q108418"
],
"relations": [
"P1376",
"P740"
],
"adjacency": [
[
1,
1,
0
],
[
0,
0,
2
]
],
"entity_labels": [
"Chicago",
"The Smashing Pumpkins",
"Cook County"
],
"relation_labels": [
"capital of",
"location of formation"
]
} | SELECT ?answer WHERE { wd:Q184217 wdt:P740 ?X . ?X wdt:P1376 ?answer} |
lcquad2-17197 | Who is {competitor} and {competitor in struggle} of {George Monro} ? | [
"Cherokee"
] | {
"entities": [
"Q454144",
"Q105405",
"Q154697"
],
"relations": [
"P607",
"P710"
],
"adjacency": [
[
0,
0,
2
],
[
2,
1,
1
]
],
"entity_labels": [
"George Monro",
"Cherokee",
"French and Indian War"
],
"relation_labels": [
"conflict",
"participant"
]
} | SELECT ?answer WHERE { wd:Q454144 wdt:P607 ?X . ?X wdt:P710 ?answer} |
lcquad2-10017 | Which present work is said to be the same as Santa_Claus? | [
"The Ultimate Christmas Present",
"Father Christmas"
] | {
"entities": [
"Q315796",
"Q1580236",
"Q1171651"
],
"relations": [
"P1441",
"P460"
],
"adjacency": [
[
0,
0,
2
],
[
0,
1,
1
]
],
"entity_labels": [
"Santa Claus",
"Father Christmas",
"The Ultimate Christmas Present"
],
"relation_labels": [
"present in work",
"said to be the same as"
]
} | SELECT ?ans_1 ?ans_2 WHERE { wd:Q315796 wdt:P1441 ?ans_1 . wd:Q315796 wdt:P460 ?ans_2 } |
lcquad2-23574 | Tell me recurring event, the name of which contains the word worldcon. | [
"Worldcon"
] | {
"entities": [
"Q617378",
"Q15275719"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Worldcon",
"recurring event"
],
"relation_labels": [
"instance of"
]
} | SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q15275719 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'worldcon')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-23966 | Let me know locale of Austria whose title has the word wels in it. | [
"Wels-Land District"
] | {
"entities": [
"Q660544",
"Q871419"
],
"relations": [
"P31"
],
"adjacency": [
[
0,
0,
1
]
],
"entity_labels": [
"Wels-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(CONTAINS(lcase(?sbj_label), 'wels')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25 |
lcquad2-21820 | What is Lionel Messi on trial for? | [
"trial of Lionel and Jorge Messi"
] | {
"entities": [
"Q8016240",
"Q41496125",
"Q615"
],
"relations": [
"P31",
"P1591"
],
"adjacency": [
[
1,
1,
2
],
[
1,
0,
0
]
],
"entity_labels": [
"trial",
"trial of Lionel and Jorge Messi",
"Lionel Messi"
],
"relation_labels": [
"instance of",
"defendant"
]
} | select distinct ?sbj where { ?sbj wdt:P1591 wd:Q615 . ?sbj wdt:P31 wd:Q8016240 } |
lcquad2-14861 | What does Liesbeth Lijnzaad think about? | [
"admiralty law"
] | {
"entities": [
"Q30303270",
"Q639118",
"Q382113"
],
"relations": [
"P108",
"P101"
],
"adjacency": [
[
0,
0,
1
],
[
1,
1,
2
]
],
"entity_labels": [
"Liesbeth Lijnzaad",
"International Tribunal for the Law of the Sea",
"admiralty law"
],
"relation_labels": [
"employer",
"field of work"
]
} | SELECT ?answer WHERE { wd:Q30303270 wdt:P108 ?X . ?X wdt:P101 ?answer} |
lcquad2-12330 | What is the center title of Sheridan Le Fanu which is same as Giusepp? | [
"Joseph"
] | {
"entities": [
"Q25918063",
"Q326467",
"Q471788"
],
"relations": [
"P735",
"P460"
],
"adjacency": [
[
1,
0,
2
],
[
2,
1,
0
]
],
"entity_labels": [
"Giüsèpp",
"Sheridan Le Fanu",
"Joseph"
],
"relation_labels": [
"given name",
"said to be the same as"
]
} | SELECT ?answer WHERE { wd:Q326467 wdt:P735 ?answer . ?answer wdt:P460 wd:Q25918063} |