uid
int32
0
30.2k
NNQT_question
stringlengths
25
350
paraphrased_question
stringlengths
0
750
question
stringlengths
1
655
simplified_query
stringlengths
57
405
sparql_dbpedia18
stringlengths
311
826
sparql_wikidata
stringlengths
37
357
answer
listlengths
0
2.42M
solved_answer
listlengths
0
2.42M
subgraph
stringclasses
14 values
template
stringclasses
26 values
template_id
stringclasses
13 values
template_index
int32
0
38.6k
12,537
What is {technique used} of {juice}, that has {using} is {Juicer} ?
What technique does a Juicer use to juice something?
What is the technique used to juice something using a Juicer?
SELECT ?w WHERE { ?w property:uses resource:juicer . resource:juice property:fabrication_method ?w }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q8492> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2079>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2283> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q13034048> . }
SELECT ?answer WHERE { wd:Q8492 wdt:P2079 ?answer . ?answer wdt:P2283 wd:Q13034048}
[ "http://www.wikidata.org/entity/Q6305202" ]
[ "juicing" ]
right-subgraph
E REF ?F . ?F RFG G
1
25
10,724
What is {end time} and {start time} of {{Jessica Lange} has {partner} as {Sam Shepard}}
At what point in time where Jessica Lange and Sam Shephard in a romantic relationship?
When were Jessica Lange and Sam Shephard together?
SELECT ?v ?j WHERE { ?b property:end_time ?v . ?b property:unmarried_partner resource:Sam_Shepard . resource:Jessica_Lange property:unmarried_partner ?b . ?b property:start_time ?j }
select distinct ?value1 ?value2 where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q173585> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P451> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q294583>. ?statement <http://www.wikidata.org/entity/P580> ?value1 . ?statement <http://www.wikidata.org/entity/P2842> ?value2 }
SELECT ?value1 ?value2 WHERE { wd:Q173585 p:P451 ?s . ?s ps:P451 wd:Q294583 . ?s pq:P582 ?value1 . ?s pq:P580 ?value2 }
[]
[]
[]
[]
2
1,025
20,878
What is the {country} for {replaces} of {Czechoslovakia}
Which country has Czechoslovakia replaced?
Which country replaced Czechoslovakia?
SELECT DISTINCT ?i WHERE { ?i property:replaces resource:Czechoslovakia . ?i rdf:type ontology:country }
select distinct ?subj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?subj . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1365> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q33946> . ?subj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q6256> }
select distinct ?sbj where { ?sbj wdt:P1365 wd:Q33946 . ?sbj wdt:P31 wd:Q6256 }
[]
[]
simple question left
<?S P O ; ?S InstanceOf Type>
2
1,224
11,915
What is {is in the Indian reserve of} of {Fujian}, that has {borders} is {Afghanistan} ?
"What is {is in the Indian reserve of} of {Fujian}, which has {borders} of {Afghanistan} ?"
"What is {is in the Indian reserve of} of {Fujian}, which has {borders} of {Afghanistan} ?"
SELECT ?d WHERE { resource:Fujian property:located_in_the_administrative_territorial_entity ?d . ?d property:shares_border_with resource:Afghanistan }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q41705> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P131>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P47> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q889> . }
SELECT ?answer WHERE { wd:Q41705 wdt:P131 ?answer . ?answer wdt:P47 wd:Q889}
[ "http://www.wikidata.org/entity/Q148" ]
[ "People's Republic of China" ]
right-subgraph
E REF ?F . ?F RFG G
1
2,578
24,020
Give me {hole} that starts with {'d'}
Let me know gap that contains the word d
Tell me hole that contains the word d
SELECT DISTINCT ?o WHERE { ?o rdf:type ontology:hole . FILTER ( STRSTARTS ( LCASE ( ?o ) , 'd' ) ) }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q20204151>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'd')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q20204151 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'd')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[]
[]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
759
24,304
Give me {circumstellar disk} that starts with {'b'}
Which is the circumstellar disk which begins with the letter b?
Which is the circumstellar disk which starts with the letter b?
SELECT DISTINCT ?s WHERE { FILTER ( STRSTARTS ( LCASE ( ?s ) , 'b' ) ) . ?s rdf:type ontology:circumstellar_disk }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q3235978>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'b')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q3235978 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'b')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[]
[]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
3,813
16,720
What is {interaction} of {antiparticle of} of {strange quark} ?
Who gave the {interaction} of {antiparticle of} of {interesting quark} ?
Who gave the {interaction} of {antiparticle of} of {strange quark} ?
SELECT ?k WHERE { resource:strange_quark property:antiparticle ?b . ?b property:interaction ?k }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q6763> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2152>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P517> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q6763 wdt:P2152 ?X . ?X wdt:P517 ?answer}
[ "http://www.wikidata.org/entity/Q11412", "http://www.wikidata.org/entity/Q11415", "http://www.wikidata.org/entity/Q11418", "http://www.wikidata.org/entity/Q849919" ]
[ "gravity", "strong interaction", "weak interaction", "electromagnetic force" ]
right-subgraph
E REF xF . xF RFG ?G
2
3
2,064
How many {medical condition treated} are to/by {cough} ?
What is the number of medical tests performed for a cough?
How many medicals tests are tested for the {cough} ?
SELECT ( COUNT ( ?n ) AS ?v ) { ?n property:medical_condition_treated resource:cough }
SELECT (COUNT(?sub) AS ?subs ) { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sub . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2175> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> http://wikidata.dbpedia.org/resource/Q35805 . }
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:P2175 wd:Q35805 }
[ "11" ]
[ "11" ]
statement_property
Count ent (ent-pred-obj)
Count_2
1,408
25,212
Give me {psychoactive drug} that {natural product of taxon} {Papaver somniferum} and which contains the word {opium} in their name
Which psychoactive drug made of Papaver somniferum containing in its name the word "opium"
Name this psychoactive drug made from Papaver somniferum that contains the word "opium " in its name
SELECT DISTINCT ?l WHERE { ?l rdf:type ontology:psychoactive_drug . ?l property:natural_product_of_taxon resource:Papaver_somniferum . FILTER ( CONTAINS ( LCASE ( ?l ) , 'opium' ) ) }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q3706669>. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1582> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q131584>. ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'opium')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q3706669 . ?sbj wdt:P1582 wd:Q131584 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'opium')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q46452", "opium" ]
[ "opium", "opium" ]
string matching type + relation contains word
<?S P O ; ?S instanceOf Type ; contains word >
3
1,642
25,304
Give me {chemical compound} that {significant drug interaction} {astemizole} and which that starts with {'t'}
What chemical compound has a sizable drug interaction with astemizole starts with the letter t?
What chemical compound has a significant drug interaction with astemizole starts with the letter t?
SELECT DISTINCT ?j WHERE { FILTER ( STRSTARTS ( LCASE ( ?j ) , 't' ) ) . ?j rdf:type ontology:chemical_compound . ?j property:significant_drug_interaction resource:astemizole }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q11173>. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P769> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q423437>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q11173 . ?sbj wdt:P769 wd:Q423437 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q417909", "terfenadine", "http://www.wikidata.org/entity/Q58375", "thioridazine" ]
[ "terfenadine", "terfenadine", "thioridazine", "thioridazine" ]
string matching type + relation contains word
<?S P O ; ?S instanceOf Type ; starts with character >
4
130
7,800
What is {position held} of {James Bryant Conant} that is {replaced by} is {Nathan M. Pusey} ?
For what purpose James Bryant Conant was replaced by Nathan M. Pusey?
Nathan M. Pusey replaced James Bryant Conant in what position?
SELECT ?w WHERE { resource:James_Bryant_Conant property:position_held ?n . ?n property:replaced_by resource:Nathan_M._Pusey . ?n property:position_held ?w }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q49355> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P39> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P1366> <http://wikidata.dbpedia.org/resource/Q1772795> }
SELECT ?obj WHERE { wd:Q49355 p:P39 ?s . ?s ps:P39 ?obj . ?s pq:P1366 wd:Q1772795 }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
4,245
19,378
Does the {earthquake magnitude on the moment magnitude scale} of the {365 Crete earthquake} {equals} {8.5}
During the 365 Crete earthquake, was a magnitude of 8.5 registered?
Was the earthquake magnitude on the moment magnitude scale in the 365 Crete earthquake equal 8.5?
ASK WHERE { resource:365_Crete_earthquake property:earthquake_magnitude_on_the_moment_magnitude_scale ?g . FILTER ( ?g = 8.5 ) }
ASK { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1348954> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2527>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj. filter(?obj = 8.5) }
ASK WHERE { wd:Q1348954 wdt:P2527 ?obj filter(?obj = 8.5) }
[]
[]
boolean with filter
ASK ?sbj ?pred ?obj filter ?obj = num
3
1,396
10,894
What is {elected in} and {end cause} of {{Henry Campbell-Bannerman} has {position held} as {Member of the 20th Parliament of the United Kingdom}}
How long was UK 20th Parliament member Henry Campbell - Bannerman?
How long was Henry Campbell-Bannerman a member of the 20th Parliament of the UK?
SELECT ?d ?r WHERE { ?e property:end_cause ?r . resource:Henry_Campbell-Bannerman property:position_held ?e . ?e property:position_held resource:Member_of_the_20th_Parliament_of_the_United_Kingdom . ?e property:elected_in ?d }
select distinct ?value1 ?value2 where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q106618> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P39> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q41582560>. ?statement <http://www.wikidata.org/entity/P580> ?value1 . ?statement <http://www.wikidata.org/entity/P2842> ?value2 }
SELECT ?value1 ?value2 WHERE { wd:Q106618 p:P39 ?s . ?s ps:P39 wd:Q41582560 . ?s pq:P2715 ?value1 . ?s pq:P1534 ?value2 }
[]
[]
[]
[]
2
1,366
21,971
What is the {literary work} for {follows} of {Exodus}
What scholarly work takes after the book of Exodus?
What literary work follows the book of Exodus?
SELECT DISTINCT ?y WHERE { ?y rdf:type ontology:literary_work . resource:Exodus property:follows ?y }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q9190> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P155> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?obj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q7725634> }
select distinct ?obj where { wd:Q9190 wdt:P155 ?obj . ?obj wdt:P31 wd:Q7725634 }
[ "http://www.wikidata.org/entity/Q9184" ]
[ "Book of Genesis" ]
simple question right
<S P ?O ; ?O instanceOf Type>
1
3,032
16,556
What is {parent company of} of {label} of {Carabao} ?
Which parent company owns the label of Carabao?
Who is the parent company of the label of Carabao?
SELECT ?i WHERE { ?g property:subsidiary ?i . resource:Carabao property:record_label ?g }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1035286> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P264>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P355> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q1035286 wdt:P264 ?X . ?X wdt:P355 ?answer}
[ "http://www.wikidata.org/entity/Q18628", "http://www.wikidata.org/entity/Q183412", "http://www.wikidata.org/entity/Q220861", "http://www.wikidata.org/entity/Q585643", "http://www.wikidata.org/entity/Q605512", "http://www.wikidata.org/entity/Q627091", "http://www.wikidata.org/entity/Q645889", "http://www.wikidata.org/entity/Q656752", "http://www.wikidata.org/entity/Q726251", "http://www.wikidata.org/entity/Q874433", "http://www.wikidata.org/entity/Q1046066", "http://www.wikidata.org/entity/Q1153338", "http://www.wikidata.org/entity/Q1383563", "http://www.wikidata.org/entity/Q1402435", "http://www.wikidata.org/entity/Q1644016", "http://www.wikidata.org/entity/Q1849138", "http://www.wikidata.org/entity/Q1998195", "http://www.wikidata.org/entity/Q2002177", "http://www.wikidata.org/entity/Q2299832", "http://www.wikidata.org/entity/Q2310883", "http://www.wikidata.org/entity/Q2576206", "http://www.wikidata.org/entity/Q2894395", "http://www.wikidata.org/entity/Q3566342", "http://www.wikidata.org/entity/Q3652555", "http://www.wikidata.org/entity/Q3852994", "http://www.wikidata.org/entity/Q4354637", "http://www.wikidata.org/entity/Q4355510", "http://www.wikidata.org/entity/Q4736435", "http://www.wikidata.org/entity/Q4905064", "http://www.wikidata.org/entity/Q5170023", "http://www.wikidata.org/entity/Q5508109", "http://www.wikidata.org/entity/Q5578903", "http://www.wikidata.org/entity/Q6669740", "http://www.wikidata.org/entity/Q7160455", "http://www.wikidata.org/entity/Q7162175", "http://www.wikidata.org/entity/Q7377889", "http://www.wikidata.org/entity/Q7969736", "http://www.wikidata.org/entity/Q7969738", "http://www.wikidata.org/entity/Q7969762", "http://www.wikidata.org/entity/Q9170958", "http://www.wikidata.org/entity/Q9371062", "http://www.wikidata.org/entity/Q15286350", "http://www.wikidata.org/entity/Q15914297", "http://www.wikidata.org/entity/Q16070339", "http://www.wikidata.org/entity/Q17040172", "http://www.wikidata.org/entity/Q21634927", "http://www.wikidata.org/entity/Q31078061", "http://www.wikidata.org/entity/Q51782107", "http://www.wikidata.org/entity/Q56525818", "http://www.wikidata.org/entity/Q64022956", "http://www.wikidata.org/entity/Q64485206", "http://www.wikidata.org/entity/Q67030918", "http://www.wikidata.org/entity/Q67506759" ]
[ "Roadrunner Records", "EMI", "Kontor Records", "Atco Records", "Maybach Music Group", "Rhino Entertainment Company", "Reprise Records", "Rykodisc", "Elektra", "Warner Music Japan", "Fueled by Ramen LLC", "Grand Hustle Records", "Telltale Games", "Giant Records", "Tommy Boy Records", "Nonesuch", "Asylum Records", "Lava Records", "Mushroom Records", "Spinnin' Records", "East West Records", "Metamorfosis", "Warner Music France", "Atlantic Records Group", "Maverick Films", "Warner Music Canada", "Warner Chappell Music", "Alternative Distribution Alliance", "Big Beat Records", "Cordless Recordings", "Full Moon Records", "Gold Typhoon", "London-Sire Records", "Peerless Records", "Penalty Recordings", "RuffNation Records", "Warner Music Latina", "Warner Music Vision", "Warner Strategic Marketing", "EMI Music Poland Sp. z o.o.", "Warner Music Germany", "Warner Music Taiwan", "Warner Music Hong Kong", "OVO Sound", "Word Entertainment", "Gala Records", "Parlophone Label Group", "Warner Music Russia", "Warner Music International, Inc.", "Warner Music Sweden", "Warner Bros. Records Inc.", "Warner Records Inc.", "Sire Records Co." ]
right-subgraph
E REF xF . xF RFG ?G
2
26
13,336
What is {birth city} of {Mamoru Miyano}, that has {indigenous council} is {Saitama Prefectural Assembly} ?
Which is the beginning city of Mamoru Miyano , that have indigenous council specifically Saitama Prefectural Assembly?
Which is the birth city of Mamoru Miyano , that have indigenous council namely Saitama Prefectural Assembly?
SELECT ?y WHERE { resource:Mamoru_Miyano property:place_of_birth ?y . ?y property:legislative_body resource:Saitama_Prefectural_Assembly }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q519821> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P19>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P194> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q11426811> . }
SELECT ?answer WHERE { wd:Q519821 wdt:P19 ?answer . ?answer wdt:P194 wd:Q11426811}
[]
[]
right-subgraph
E REF ?F . ?F RFG G
1
966
6,469
What is {nominated for} of {Michael Chabon} that is {point in time} is {2008-0-0} ?
in 2008 michael chabon was nominated for?
What was Michael Chabon nominated for at the start of 2008?
SELECT ?k WHERE { ?y property:point_in_time ?y . FILTER ( CONTAINS ( YEAR ( ?y ) , '2008' ) ) . resource:Michael_Chabon property:nominated_for ?y . ?y property:nominated_for ?k }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q313466> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1411> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P585> <2008-0-0> }
SELECT ?obj WHERE { wd:Q313466 p:P1411 ?s . ?s ps:P1411 ?obj . ?s pq:P585 ?x filter(contains(YEAR(?x),'2008')) }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
2,914
24,115
Give me {institution of the European Union} that starts with {'e'}
What are the institution of the European Union which begin with the letter s
What are the institution of the European Union which start with the letter s
SELECT DISTINCT ?x WHERE { FILTER ( STRSTARTS ( LCASE ( ?x ) , 'e' ) ) . ?x rdf:type ontology:institution_of_the_European_Union }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q748720>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'e')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q748720 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'e')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q8901", "European Central Bank", "http://www.wikidata.org/entity/Q8886", "European Council", "http://www.wikidata.org/entity/Q8889", "European Parliament", "http://www.wikidata.org/entity/Q8880", "European Commission" ]
[ "European Central Bank", "European Central Bank", "European Council", "European Council", "European Parliament", "European Parliament", "European Commission", "European Commission" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
702
17,367
What is {victim} of {participated in conflict} of {Guy de Montlaur} ?
Who is {casualty} {taken an interest in struggle} of {Fellow de Montlaur} ?
Who is {victim} {participated in conflict} of {Guy de Montlaur} ?
SELECT ?c WHERE { ?z property:participant ?c . resource:Guy_de_Montlaur property:conflict ?z }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q3122281> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P607>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P710> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q3122281 wdt:P607 ?X . ?X wdt:P710 ?answer}
[ "http://www.wikidata.org/entity/Q16", "http://www.wikidata.org/entity/Q20", "http://www.wikidata.org/entity/Q30", "http://www.wikidata.org/entity/Q31", "http://www.wikidata.org/entity/Q35", "http://www.wikidata.org/entity/Q36", "http://www.wikidata.org/entity/Q41", "http://www.wikidata.org/entity/Q55", "http://www.wikidata.org/entity/Q145", "http://www.wikidata.org/entity/Q408", "http://www.wikidata.org/entity/Q664", "http://www.wikidata.org/entity/Q7318", "http://www.wikidata.org/entity/Q9916", "http://www.wikidata.org/entity/Q14060", "http://www.wikidata.org/entity/Q57457", "http://www.wikidata.org/entity/Q62106", "http://www.wikidata.org/entity/Q67682", "http://www.wikidata.org/entity/Q70527", "http://www.wikidata.org/entity/Q152025", "http://www.wikidata.org/entity/Q152582", "http://www.wikidata.org/entity/Q207955", "http://www.wikidata.org/entity/Q334980", "http://www.wikidata.org/entity/Q430161", "http://www.wikidata.org/entity/Q503384", "http://www.wikidata.org/entity/Q540593", "http://www.wikidata.org/entity/Q710439", "http://www.wikidata.org/entity/Q16", "http://www.wikidata.org/entity/Q31", "http://www.wikidata.org/entity/Q32", "http://www.wikidata.org/entity/Q145", "http://www.wikidata.org/entity/Q7318", "http://www.wikidata.org/entity/Q12973", "http://www.wikidata.org/entity/Q29999", "http://www.wikidata.org/entity/Q43056", "http://www.wikidata.org/entity/Q57134", "http://www.wikidata.org/entity/Q57140", "http://www.wikidata.org/entity/Q58651", "http://www.wikidata.org/entity/Q70527", "http://www.wikidata.org/entity/Q70534", "http://www.wikidata.org/entity/Q70546", "http://www.wikidata.org/entity/Q70560", "http://www.wikidata.org/entity/Q70802", "http://www.wikidata.org/entity/Q119879", "http://www.wikidata.org/entity/Q153132", "http://www.wikidata.org/entity/Q170357", "http://www.wikidata.org/entity/Q172579", "http://www.wikidata.org/entity/Q179023", "http://www.wikidata.org/entity/Q187149", "http://www.wikidata.org/entity/Q218280", "http://www.wikidata.org/entity/Q329888", "http://www.wikidata.org/entity/Q334984", "http://www.wikidata.org/entity/Q430161", "http://www.wikidata.org/entity/Q717830", "http://www.wikidata.org/entity/Q1337896" ]
[ "Canada", "Norway", "United States of America", "Belgium", "Denmark", "Poland", "Greece", "Netherlands", "United Kingdom", "Australia", "New Zealand", "Nazi Germany", "Dwight D. Eisenhower", "Erwin Rommel", "Friedrich Dollmann", "Hans von Salmuth", "Wilhelm Falley", "Gerd von Rundstedt", "Bernard Law Montgomery, 1st Viscount Montgomery of Alamein", "Free France", "Omar Bradley", "Arthur Tedder, 1st Baron Tedder", "Czechoslovak government-in-exile", "Trafford Leigh-Mallory", "Miles Dempsey", "Bertram Home Ramsay", "Canada", "Belgium", "Luxembourg", "United Kingdom", "Nazi Germany", "Leopold III of Belgium", "Kingdom of the Netherlands", "Axis", "Albert Kesselring", "Walther von Brauchitsch", "Hugo Sperrle", "Gerd von Rundstedt", "Fedor von Bock", "Wilhelm Ritter von Leeb", "Heinz Guderian", "French Third Republic", "Polish Armed Forces in the West", "Władysław Sikorski", "Maxime Weygand", "Kingdom of Italy", "French colonial empire", "Umberto II of Italy", "Maurice Gamelin", "Allies of the Second World War", "John Vereker, 6th Viscount Gort", "Czechoslovak government-in-exile", "Henri Winkelman", "Alphonse Joseph Georges" ]
left-subgraph
C RCD xD . xD RDE ?E
5
50
13,964
What is {mother tongue} of {Marie Curie}, that has {typology} is {free-order language} ?
What is the mom tongue of Marie Curie, that has free order language typology?
What is the mother tongue of Marie Curie, that has free order language typology?
SELECT ?b WHERE { ?b property:linguistic_typology resource:free-order_language . resource:Marie_Curie property:native_language ?b }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q7186> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P103>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P4132> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q33129605> . }
SELECT ?answer WHERE { wd:Q7186 wdt:P103 ?answer . ?answer wdt:P4132 wd:Q33129605}
[ "http://www.wikidata.org/entity/Q809" ]
[ "Polish" ]
right-subgraph
E REF ?F . ?F RFG G
1
9,360
14,523
What is {patron} of {operated by} of {Irish Wikibooks} ?
Who is the budgetary sponsor of Irish Wikibooks?
Who is the financial backer of Irish Wikibooks?
SELECT ?s WHERE { ?o property:sponsor ?s . resource:Irish_Wikibooks property:operator ?o }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q33109683> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P137>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P859> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q33109683 wdt:P137 ?X . ?X wdt:P859 ?answer}
[ "http://www.wikidata.org/entity/Q95", "http://www.wikidata.org/entity/Q149067", "http://www.wikidata.org/entity/Q738005", "http://www.wikidata.org/entity/Q786194", "http://www.wikidata.org/entity/Q974541", "http://www.wikidata.org/entity/Q1200258", "http://www.wikidata.org/entity/Q1288412", "http://www.wikidata.org/entity/Q1313036", "http://www.wikidata.org/entity/Q1726129", "http://www.wikidata.org/entity/Q3070474", "http://www.wikidata.org/entity/Q3352030", "http://www.wikidata.org/entity/Q6256434", "http://www.wikidata.org/entity/Q6986957", "http://www.wikidata.org/entity/Q17088752", "http://www.wikidata.org/entity/Q18355352", "http://www.wikidata.org/entity/Q18392821", "http://www.wikidata.org/entity/Q33090271", "http://www.wikidata.org/entity/Q45135687" ]
[ "Google", "Pavel Durov", "Vinod Khosla", "Open Society Foundations", "Craig Newmark", "Alfred P. Sloan Foundation", "Hewlett Foundation", "Ford Foundation", "Stavros Niarchos Foundation", "Gordon and Betty Moore Foundation", "Omidyar Network", "John S. and James L. Knight Foundation", "Neeru Khosla", "Arnold Ventures", "Two Sigma", "Stanton Foundation", "Siegel Family Endowment", "Brin Wojcicki Foundation" ]
left-subgraph
C RCD xD . xD RDE ?E
5
20,912
20,184
What is the {human} for {residence} of {Rome}
The residence of Rome is what?
who is the residence of rome?
SELECT DISTINCT ?o WHERE { ?o rdf:type ontology:human . ?o property:residence resource:Rome }
select distinct ?subj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?subj . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P551> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q220> . ?subj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q5> }
select distinct ?sbj where { ?sbj wdt:P551 wd:Q220 . ?sbj wdt:P31 wd:Q5 }
[ "http://www.wikidata.org/entity/Q78506", "http://www.wikidata.org/entity/Q97466", "http://www.wikidata.org/entity/Q106881", "http://www.wikidata.org/entity/Q106907", "http://www.wikidata.org/entity/Q107006", "http://www.wikidata.org/entity/Q115483", "http://www.wikidata.org/entity/Q117656", "http://www.wikidata.org/entity/Q124880", "http://www.wikidata.org/entity/Q133855", "http://www.wikidata.org/entity/Q162593", "http://www.wikidata.org/entity/Q166562", "http://www.wikidata.org/entity/Q170503", "http://www.wikidata.org/entity/Q185462", "http://www.wikidata.org/entity/Q228644", "http://www.wikidata.org/entity/Q237482", "http://www.wikidata.org/entity/Q237908", "http://www.wikidata.org/entity/Q240527", "http://www.wikidata.org/entity/Q242819", "http://www.wikidata.org/entity/Q265927", "http://www.wikidata.org/entity/Q267328", "http://www.wikidata.org/entity/Q270670", "http://www.wikidata.org/entity/Q272409", "http://www.wikidata.org/entity/Q272650", "http://www.wikidata.org/entity/Q276023", "http://www.wikidata.org/entity/Q286327", "http://www.wikidata.org/entity/Q290477", "http://www.wikidata.org/entity/Q305106", "http://www.wikidata.org/entity/Q361329", "http://www.wikidata.org/entity/Q367201", "http://www.wikidata.org/entity/Q379664", "http://www.wikidata.org/entity/Q405309", "http://www.wikidata.org/entity/Q405548", "http://www.wikidata.org/entity/Q430846", "http://www.wikidata.org/entity/Q433855", "http://www.wikidata.org/entity/Q434479", "http://www.wikidata.org/entity/Q437406", "http://www.wikidata.org/entity/Q441573", "http://www.wikidata.org/entity/Q444011", "http://www.wikidata.org/entity/Q451518", "http://www.wikidata.org/entity/Q458101", "http://www.wikidata.org/entity/Q459396", "http://www.wikidata.org/entity/Q459645", "http://www.wikidata.org/entity/Q461240", "http://www.wikidata.org/entity/Q468793", "http://www.wikidata.org/entity/Q470100", "http://www.wikidata.org/entity/Q506159", "http://www.wikidata.org/entity/Q507595", "http://www.wikidata.org/entity/Q511962", "http://www.wikidata.org/entity/Q512205", "http://www.wikidata.org/entity/Q515887", "http://www.wikidata.org/entity/Q517574", "http://www.wikidata.org/entity/Q521541", "http://www.wikidata.org/entity/Q524892", "http://www.wikidata.org/entity/Q526911", "http://www.wikidata.org/entity/Q541972", "http://www.wikidata.org/entity/Q558295", "http://www.wikidata.org/entity/Q559577", "http://www.wikidata.org/entity/Q560126", "http://www.wikidata.org/entity/Q568575", "http://www.wikidata.org/entity/Q585972", "http://www.wikidata.org/entity/Q597551", "http://www.wikidata.org/entity/Q603390", "http://www.wikidata.org/entity/Q604646", "http://www.wikidata.org/entity/Q636733", "http://www.wikidata.org/entity/Q649382", "http://www.wikidata.org/entity/Q674169", "http://www.wikidata.org/entity/Q680832", "http://www.wikidata.org/entity/Q691834", "http://www.wikidata.org/entity/Q706525", "http://www.wikidata.org/entity/Q709909", "http://www.wikidata.org/entity/Q710070", "http://www.wikidata.org/entity/Q718373", "http://www.wikidata.org/entity/Q722644", "http://www.wikidata.org/entity/Q728132", "http://www.wikidata.org/entity/Q731059", "http://www.wikidata.org/entity/Q737369", "http://www.wikidata.org/entity/Q782629", "http://www.wikidata.org/entity/Q785649", "http://www.wikidata.org/entity/Q788614", "http://www.wikidata.org/entity/Q930162", "http://www.wikidata.org/entity/Q967059", "http://www.wikidata.org/entity/Q978509", "http://www.wikidata.org/entity/Q762", "http://www.wikidata.org/entity/Q1048", "http://www.wikidata.org/entity/Q1430", "http://www.wikidata.org/entity/Q2054", "http://www.wikidata.org/entity/Q4671", "http://www.wikidata.org/entity/Q7302", "http://www.wikidata.org/entity/Q7314", "http://www.wikidata.org/entity/Q7728", "http://www.wikidata.org/entity/Q8753", "http://www.wikidata.org/entity/Q11879", "http://www.wikidata.org/entity/Q23848", "http://www.wikidata.org/entity/Q42827", "http://www.wikidata.org/entity/Q48261", "http://www.wikidata.org/entity/Q49941", "http://www.wikidata.org/entity/Q50005", "http://www.wikidata.org/entity/Q53040", "http://www.wikidata.org/entity/Q987795", "http://www.wikidata.org/entity/Q1005945", "http://www.wikidata.org/entity/Q1006997", "http://www.wikidata.org/entity/Q1007923", "http://www.wikidata.org/entity/Q1009918", "http://www.wikidata.org/entity/Q1010436", "http://www.wikidata.org/entity/Q1025379", "http://www.wikidata.org/entity/Q1054161", "http://www.wikidata.org/entity/Q1056504", "http://www.wikidata.org/entity/Q1057343", "http://www.wikidata.org/entity/Q1058161", "http://www.wikidata.org/entity/Q1077542", "http://www.wikidata.org/entity/Q1080362", "http://www.wikidata.org/entity/Q1083986", "http://www.wikidata.org/entity/Q1109324", "http://www.wikidata.org/entity/Q1169248", "http://www.wikidata.org/entity/Q1237458", "http://www.wikidata.org/entity/Q1246106", "http://www.wikidata.org/entity/Q1307093", "http://www.wikidata.org/entity/Q1363975", "http://www.wikidata.org/entity/Q1378908", "http://www.wikidata.org/entity/Q1395422", "http://www.wikidata.org/entity/Q1439362", "http://www.wikidata.org/entity/Q1443155", "http://www.wikidata.org/entity/Q1571017", "http://www.wikidata.org/entity/Q1616815", "http://www.wikidata.org/entity/Q1635395", "http://www.wikidata.org/entity/Q1638123", "http://www.wikidata.org/entity/Q1682362", "http://www.wikidata.org/entity/Q1696398", "http://www.wikidata.org/entity/Q1731886", "http://www.wikidata.org/entity/Q1748012", "http://www.wikidata.org/entity/Q2050319", "http://www.wikidata.org/entity/Q2050883", "http://www.wikidata.org/entity/Q2114256", "http://www.wikidata.org/entity/Q2224433", "http://www.wikidata.org/entity/Q2262449", "http://www.wikidata.org/entity/Q2293943", "http://www.wikidata.org/entity/Q2511268", "http://www.wikidata.org/entity/Q2659120", "http://www.wikidata.org/entity/Q2713814", "http://www.wikidata.org/entity/Q2833250", "http://www.wikidata.org/entity/Q2846314", "http://www.wikidata.org/entity/Q2855108", "http://www.wikidata.org/entity/Q2857528", "http://www.wikidata.org/entity/Q2883927", "http://www.wikidata.org/entity/Q2888677", "http://www.wikidata.org/entity/Q2939658", "http://www.wikidata.org/entity/Q2947036", "http://www.wikidata.org/entity/Q2958905", "http://www.wikidata.org/entity/Q3021807", "http://www.wikidata.org/entity/Q3051731", "http://www.wikidata.org/entity/Q3106963", "http://www.wikidata.org/entity/Q3107879", "http://www.wikidata.org/entity/Q3159880", "http://www.wikidata.org/entity/Q3297306", "http://www.wikidata.org/entity/Q3308753", "http://www.wikidata.org/entity/Q3423469", "http://www.wikidata.org/entity/Q3479655", "http://www.wikidata.org/entity/Q3610269", "http://www.wikidata.org/entity/Q3610439", "http://www.wikidata.org/entity/Q3610486", "http://www.wikidata.org/entity/Q3610763", "http://www.wikidata.org/entity/Q3615966", "http://www.wikidata.org/entity/Q3617481", "http://www.wikidata.org/entity/Q3618957", "http://www.wikidata.org/entity/Q3619021", "http://www.wikidata.org/entity/Q3624280", "http://www.wikidata.org/entity/Q3660299", "http://www.wikidata.org/entity/Q3660310", "http://www.wikidata.org/entity/Q3665310", "http://www.wikidata.org/entity/Q3719091", "http://www.wikidata.org/entity/Q3723137", "http://www.wikidata.org/entity/Q3725494", "http://www.wikidata.org/entity/Q3725755", "http://www.wikidata.org/entity/Q3732005", "http://www.wikidata.org/entity/Q3740348", "http://www.wikidata.org/entity/Q3746466", "http://www.wikidata.org/entity/Q3750644", "http://www.wikidata.org/entity/Q3763124", "http://www.wikidata.org/entity/Q3763273", "http://www.wikidata.org/entity/Q3764092", "http://www.wikidata.org/entity/Q3765314", "http://www.wikidata.org/entity/Q3769329", "http://www.wikidata.org/entity/Q3770379", "http://www.wikidata.org/entity/Q3771317", "http://www.wikidata.org/entity/Q3772425", "http://www.wikidata.org/entity/Q3779202", "http://www.wikidata.org/entity/Q3802287", "http://www.wikidata.org/entity/Q3804414", "http://www.wikidata.org/entity/Q3807575", "http://www.wikidata.org/entity/Q3826341", "http://www.wikidata.org/entity/Q3826856", "http://www.wikidata.org/entity/Q3836811", "http://www.wikidata.org/entity/Q3837598", "http://www.wikidata.org/entity/Q3838924", "http://www.wikidata.org/entity/Q3845651", "http://www.wikidata.org/entity/Q3845700", "http://www.wikidata.org/entity/Q3847291", "http://www.wikidata.org/entity/Q3847466", "http://www.wikidata.org/entity/Q3849009", "http://www.wikidata.org/entity/Q3851282", "http://www.wikidata.org/entity/Q3851317", "http://www.wikidata.org/entity/Q3852516", "http://www.wikidata.org/entity/Q3852583", "http://www.wikidata.org/entity/Q3852800", "http://www.wikidata.org/entity/Q3856928", "http://www.wikidata.org/entity/Q3860841", "http://www.wikidata.org/entity/Q3888783", "http://www.wikidata.org/entity/Q3893587", "http://www.wikidata.org/entity/Q3893617", "http://www.wikidata.org/entity/Q3925320", "http://www.wikidata.org/entity/Q3929015", "http://www.wikidata.org/entity/Q3937255", "http://www.wikidata.org/entity/Q3939129", "http://www.wikidata.org/entity/Q3941292", "http://www.wikidata.org/entity/Q3941319", "http://www.wikidata.org/entity/Q3941340", "http://www.wikidata.org/entity/Q3941603", "http://www.wikidata.org/entity/Q3942533", "http://www.wikidata.org/entity/Q3951106", "http://www.wikidata.org/entity/Q3964484", "http://www.wikidata.org/entity/Q3972381", "http://www.wikidata.org/entity/Q3972906", "http://www.wikidata.org/entity/Q4006499", "http://www.wikidata.org/entity/Q4063420", "http://www.wikidata.org/entity/Q4282751", "http://www.wikidata.org/entity/Q4456892", "http://www.wikidata.org/entity/Q4716454", "http://www.wikidata.org/entity/Q4751208", "http://www.wikidata.org/entity/Q4777182", "http://www.wikidata.org/entity/Q4891703", "http://www.wikidata.org/entity/Q4967393", "http://www.wikidata.org/entity/Q5474649", "http://www.wikidata.org/entity/Q5804774", "http://www.wikidata.org/entity/Q5952094", "http://www.wikidata.org/entity/Q5952812", "http://www.wikidata.org/entity/Q6233875", "http://www.wikidata.org/entity/Q6563454", "http://www.wikidata.org/entity/Q6777030", "http://www.wikidata.org/entity/Q6809337", "http://www.wikidata.org/entity/Q7322912", "http://www.wikidata.org/entity/Q7401197", "http://www.wikidata.org/entity/Q9024950", "http://www.wikidata.org/entity/Q9185662", "http://www.wikidata.org/entity/Q9201293", "http://www.wikidata.org/entity/Q9257214", "http://www.wikidata.org/entity/Q9341480", "http://www.wikidata.org/entity/Q10301387", "http://www.wikidata.org/entity/Q10861101", "http://www.wikidata.org/entity/Q11698567", "http://www.wikidata.org/entity/Q11724900", "http://www.wikidata.org/entity/Q11727993", "http://www.wikidata.org/entity/Q11927983", "http://www.wikidata.org/entity/Q11955286", "http://www.wikidata.org/entity/Q12086884", "http://www.wikidata.org/entity/Q12784446", "http://www.wikidata.org/entity/Q13512902", "http://www.wikidata.org/entity/Q13568542", "http://www.wikidata.org/entity/Q15439441", "http://www.wikidata.org/entity/Q15647349", "http://www.wikidata.org/entity/Q15677268", "http://www.wikidata.org/entity/Q15730496", "http://www.wikidata.org/entity/Q15945027", "http://www.wikidata.org/entity/Q15972654", "http://www.wikidata.org/entity/Q15972757", "http://www.wikidata.org/entity/Q16528415", "http://www.wikidata.org/entity/Q16545413", "http://www.wikidata.org/entity/Q16581929", "http://www.wikidata.org/entity/Q17285433", "http://www.wikidata.org/entity/Q17285816", "http://www.wikidata.org/entity/Q17309136", "http://www.wikidata.org/entity/Q17381115", "http://www.wikidata.org/entity/Q17502791", "http://www.wikidata.org/entity/Q18048520", "http://www.wikidata.org/entity/Q18811755", "http://www.wikidata.org/entity/Q18812231", "http://www.wikidata.org/entity/Q18921228", "http://www.wikidata.org/entity/Q19515261", "http://www.wikidata.org/entity/Q19959375", "http://www.wikidata.org/entity/Q20101157", "http://www.wikidata.org/entity/Q20429372", "http://www.wikidata.org/entity/Q20887962", "http://www.wikidata.org/entity/Q21028005", "http://www.wikidata.org/entity/Q21272300", "http://www.wikidata.org/entity/Q21598257", "http://www.wikidata.org/entity/Q23770435", "http://www.wikidata.org/entity/Q26213571", "http://www.wikidata.org/entity/Q26222222", "http://www.wikidata.org/entity/Q26335232", "http://www.wikidata.org/entity/Q26821359", "http://www.wikidata.org/entity/Q27192669", "http://www.wikidata.org/entity/Q27450675", "http://www.wikidata.org/entity/Q27903117", "http://www.wikidata.org/entity/Q27942226", "http://www.wikidata.org/entity/Q28058585", "http://www.wikidata.org/entity/Q28867741", "http://www.wikidata.org/entity/Q29162881", "http://www.wikidata.org/entity/Q29829977", "http://www.wikidata.org/entity/Q30538055", "http://www.wikidata.org/entity/Q33187787", "http://www.wikidata.org/entity/Q38002061", "http://www.wikidata.org/entity/Q42301563", "http://www.wikidata.org/entity/Q42922206", "http://www.wikidata.org/entity/Q44950096", "http://www.wikidata.org/entity/Q47502209", "http://www.wikidata.org/entity/Q50230421", "http://www.wikidata.org/entity/Q50379380", "http://www.wikidata.org/entity/Q50687723", "http://www.wikidata.org/entity/Q52004130", "http://www.wikidata.org/entity/Q52151056", "http://www.wikidata.org/entity/Q52225200", "http://www.wikidata.org/entity/Q53583130", "http://www.wikidata.org/entity/Q55676461", "http://www.wikidata.org/entity/Q56285218", "http://www.wikidata.org/entity/Q56605641", "http://www.wikidata.org/entity/Q56706817", "http://www.wikidata.org/entity/Q57399990", "http://www.wikidata.org/entity/Q59505019", "http://www.wikidata.org/entity/Q59660729", "http://www.wikidata.org/entity/Q60218121", "http://www.wikidata.org/entity/Q60840964", "http://www.wikidata.org/entity/Q61120430", "http://www.wikidata.org/entity/Q61474176", "http://www.wikidata.org/entity/Q61725611", "http://www.wikidata.org/entity/Q63278249", "http://www.wikidata.org/entity/Q63994759", "http://www.wikidata.org/entity/Q64010353", "http://www.wikidata.org/entity/Q64067329", "http://www.wikidata.org/entity/Q64347670", "http://www.wikidata.org/entity/Q64700217", "http://www.wikidata.org/entity/Q64706876", "http://www.wikidata.org/entity/Q64711435", "http://www.wikidata.org/entity/Q64711603", "http://www.wikidata.org/entity/Q64786506", "http://www.wikidata.org/entity/Q65038739", "http://www.wikidata.org/entity/Q65095543", "http://www.wikidata.org/entity/Q65486059", "http://www.wikidata.org/entity/Q67169223", "http://www.wikidata.org/entity/Q67169261", "http://www.wikidata.org/entity/Q67198739", "http://www.wikidata.org/entity/Q70193700", "http://www.wikidata.org/entity/Q73364523", "http://www.wikidata.org/entity/Q76007923", "http://www.wikidata.org/entity/Q77942424", "http://www.wikidata.org/entity/Q78046291", "http://www.wikidata.org/entity/Q80700576", "http://www.wikidata.org/entity/Q80978813", "http://www.wikidata.org/entity/Q81723293", "http://www.wikidata.org/entity/Q82513274", "http://www.wikidata.org/entity/Q82573464", "http://www.wikidata.org/entity/Q83859079", "http://www.wikidata.org/entity/Q85209753", "http://www.wikidata.org/entity/Q87836500", "http://www.wikidata.org/entity/Q90030093", "http://www.wikidata.org/entity/Q93592587", "http://www.wikidata.org/entity/Q96955684", "http://www.wikidata.org/entity/Q97428506", "http://www.wikidata.org/entity/Q99355359", "http://www.wikidata.org/entity/Q100715837", "http://www.wikidata.org/entity/Q102173706", "http://www.wikidata.org/entity/Q104213764", "http://www.wikidata.org/entity/Q104630897", "http://www.wikidata.org/entity/Q104778079", "http://www.wikidata.org/entity/Q105336752", "http://www.wikidata.org/entity/Q105549434", "http://www.wikidata.org/entity/Q105575659", "http://www.wikidata.org/entity/Q106095798", "http://www.wikidata.org/entity/Q106485696", "http://www.wikidata.org/entity/Q106548875", "http://www.wikidata.org/entity/Q106606398", "http://www.wikidata.org/entity/Q106613200", "http://www.wikidata.org/entity/Q106613262", "http://www.wikidata.org/entity/Q106613412", "http://www.wikidata.org/entity/Q106613498", "http://www.wikidata.org/entity/Q106613563", "http://www.wikidata.org/entity/Q106622618", "http://www.wikidata.org/entity/Q106631802", "http://www.wikidata.org/entity/Q106632132", "http://www.wikidata.org/entity/Q106632424", "http://www.wikidata.org/entity/Q106640355", "http://www.wikidata.org/entity/Q106640498", "http://www.wikidata.org/entity/Q106682177", "http://www.wikidata.org/entity/Q106689820", "http://www.wikidata.org/entity/Q106689952", "http://www.wikidata.org/entity/Q106689996", "http://www.wikidata.org/entity/Q106690146", "http://www.wikidata.org/entity/Q106690228", "http://www.wikidata.org/entity/Q106697973", "http://www.wikidata.org/entity/Q106712446", "http://www.wikidata.org/entity/Q106727737", "http://www.wikidata.org/entity/Q106727834", "http://www.wikidata.org/entity/Q106731258" ]
[ "Ingeborg Bachmann", "August Kestner", "Monica Vitti", "Giulietta Masina", "Claudia Cardinale", "Max Frisch", "Benedict X", "Christina Viragh", "Guillaume Apollinaire", "Pelagius", "Ornella Muti", "Nicholas I", "Flavio Cipolla", "Sergius II", "Silvia Farina Elia", "Beatrice Cenci", "Laura Gemser", "Lucullus", "Irina Spîrlea", "Antonio Zugarelli", "Abraham ibn Ezra", "Sabrina Ferilli", "Rossana Rossanda", "Susanna Agnelli", "Agnese Allegrini", "Aitana Sánchez-Gijón", "Achille Bonito Oliva", "Gazebo", "Mike Francis", "Valentino Garavani", "Rita Bernardini", "Silvia Ronchey", "Amelia Rosselli", "Antonella Clerici", "Lino Banfi", "Catherine Spaak", "Andreea Ehritt-Vanc", "Lotte Reiniger", "María Denis", "Ciro Immobile", "Marisa Merlini", "Renata Polverini", "Pietro Consagra", "Claudia Gerini", "Mariacarla Boscono", "Pino Caruso", "Nichi Vendola", "Marisa Masullo", "Clara Colosimo", "Raymond Leo Burke", "José Villegas Cordero", "Lorella Cuccarini", "Andrés Torres Queiruga", "Delia Scala", "Stefano Pescosolido", "Vasco Pratolini", "Fausto Bertinotti", "Claudio Baglioni", "Jan Frans van Bloemen", "Gigi D'Alessio", "Giuliano Ferrara", "Antonio Martino", "Antonio Rodotà", "Jacques Sernas", "Giulia Bongiorno", "Paolo Poli", "Baldassarre Boncompagni", "Ennio Quirino Visconti", "Mario Tronti", "Nicola Pietrangeli", "Piero Valeriano Bolzani", "Malachia Ormanian", "Juan Manuel Blanes", "Vlassis Kaniaris", "Marcia Furnilla", "Tomas Arana", "Riccardo Gualino", "Paolo Capizzi", "Raffaello Fabretti", "Marco Ricci", "Roberto D’Agostino", "Renato Zero", "Leonardo da Vinci", "Julius Caesar", "Marcus Aurelius", "Seneca", "Matthew Kneale", "George Frideric Handel", "Igor Stravinsky", "Grazia Deledda", "Enrico Fermi", "Adriaen van der Cabel", "Ennio Morricone", "Gregory I", "Anna Tatangelo", "Ilona Staller", "Giulio Andreotti", "Franco Zeffirelli", "Silvano Agosti", "Silvio D'Amico", "Carlo Di Palma", "Daniele Luchetti", "Brunello Rondi", "Carlo Vanzina", "Caelestius", "Leonardo Agostini", "Vincenzo Cabianca", "Angelo Celli", "Mara Venier", "Adriano Giannini", "Francesco Scipione Maria Borghese", "Maria Antonietta Macciocchi", "Norbert van Bloemen", "Daniele Del Giudice", "Souad Sbai", "Sandro Veronesi", "Hellmut Sichtermann", "Michele Mercati", "Trilussa", "Famulus", "Milena Milani", "Sergio Casali", "Hermine Speier", "Nastassja Burnett", "Vincenzo Santopadre", "Wahbi al-Hariri", "Jan Willem Crous", "Pieter van Bloemen", "Carl Caspar Pitz", "Nino Franchina", "Paolo Bonolis", "Pappi Corsicato", "Servando Teresa de Mier", "Sarah Maestri", "Fulvio Orsini", "Cristina Ali Farah", "Justo Sierra", "John Gadsby Chapman", "Corrado Barazzutti", "Alexandra Biriukova", "Andrea Carandini", "Annalisa Minetti", "Antonius Castor", "Barbara Chase-Riboud", "Barbara Alberti", "Carmine Benincasa", "Cesare Salvi", "Charles Desvergnes", "Delphine Borione", "Elsa Peretti", "Giovanna Bemporad", "Giulia Carcasi", "Jacques Riparelli", "Masolino D'Amico", "René-Michel Slodtz", "Regina Bianchi", "Sergio De Gregorio", "Alessandro Roveri", "Alessia Mancini", "Alessio Casimirri", "Alexander Jakhnagiev", "Andrea Purgatori", "Anilda Ibrahimi", "Antonello Folco Biagini", "Antonietta Raphael", "Arthur John Strutt", "Carmen Di Pietro", "Carmen Llera", "Cesara Buonamici", "Edgardo Mannucci", "Elisa Isoardi", "Ennio Peres", "Enrico Falqui", "Ermete Realacci", "Fausto Cigliano", "Flavio Cattaneo", "Francesco Scianna", "Gianfranco Pannone", "Gianluca Nicoletti", "Gigi Marzullo", "Giorgio Brugnoli", "Giuliana Morandini", "Giuseppe Curcio", "Giuseppe Ricciotti", "Gloria De Antoni", "Guido Brunetti", "Isabella Quarantotti", "Italo Insolera", "Juan Bautista Frener", "Lamberto Pignotti", "Lanfranco Pace", "Loredana Lipperini", "Louis Godart", "Lucio Presta", "Marcello Mustè", "Marcello Veneziani", "Maria Giovanna Maglie", "Maria Pia Tavazzani", "Mario Pulvirenti", "Massimo Giletti", "Massimo Lopez", "Maurizio Becker", "Maurizio Di Vincenzo", "Mauro Cozzoli", "Micol Fontana", "Monica Setta", "José-Apeles Santolaria de Puey y Cruells", "Paola Masino", "Paola Perego", "Publio Fiori", "Raffaele Bonanni", "Ritanna Armeni", "Roberto Russo", "Rosalba Campra", "Rosanna Banfi", "Rosaria Renna", "Rossana Ombres", "Ruggero Po", "Savino Zaba", "Solvi Stubing", "Stefano Bessoni", "Stella Carnacina", "Uros Vico", "Albucilla", "Andrey Yefimovich Martynov", "Kersti Bergroth", "Alessandro de Minicis", "Anamor", "Antony Alda", "Nicanor Piñole", "Ruth Milles", "Baby K", "Devorà Ascarelli", "Johannes Parix", "Juan Vicente Piqueras", "John Francis Charles, 7th Count de Salis-Soglio", "Amra Silajdžić", "Martina Gledacheva", "Mehdi Brando Mahdloo", "Riccardo Ghedin", "Saint Eigen", "Luis Fernando Benedit", "Mieczysław OFM", "Daniel Chrupcała", "Ezdrasz Biesok", "Stanislao Loffreda", "Ilze Scamparini", "Zerahiah ben Shealtiel Ḥen", "Francisco Vergara Bartual", "Jerzy Kraj", "John Vaughn", "Joan Vila Puig", "Xavier Blanch i Pla", "Eustachy Bielawski", "Ambrogio Bollati", "Igor Gaudi", "Maria Benedicta Chigbolu", "Costas Tsoclis", "Zaga Christ", "Tito Morino", "William Miller", "Emerico Giachery", "Danila Bonito", "David Zard", "Alejandro de la Cruz", "Costanza Miriano", "Neria De Giovanni", "Rosa Rosà", "Isabella Vincentini", "William H. Herriman", "Mielikki Ivalo", "Domingo Gallego y Álvarez", "Annick de Comarmond", "Claudia Arvati", "Ludovica Ripa di Meana", "Bernardo Giorgio Mattarella", "Gaspare da Verona", "Christiane Erdmann", "Menodorus of Athens", "Ionuț Silaghi de Oaș", "Anna Fendi", "Amedeo Natoli", "Lucia Portoghesi", "Hussein Madi", "Stella Jean", "Giovanna Fontana", "Zoe Fontana", "Ricardo Villodas y de la Torre", "Ernst Curfess", "Friedrich Maler", "Dante Cerilli", "Stephanie Herela", "Giovanni Maria de Agostini", "Chiara Valerio", "Alice Torriani", "Jean Baron", "Nadia Terranova", "Massimo Fusillo", "Beatrice Hawley", "Gaia Manzini", "Eolo Perfido", "Camelia Boban", "Julius Knoblauch", "Dag Endresen", "Horacio Zabala", "Elisa Montessori", "Antonino Natoli", "Richard Wilcox", "Franco Cannilla", "Giovanni Dellapiane", "Gianni Cuozzo", "Jerzy Langman", "Nicholas Frisardi", "Vladimiro Giacché", "Elisa Maria Boglino", "Walter Cordopatri", "Rosetta Acerbi", "Jules-Bernardin Rioux", "Marina Valensise", "Fiamma Satta", "Amedeo Quondam", "Maria Capozza", "Adele Tulli", "Michele Panzarino", "Giovanni Larber", "Giovanna Motta", "Francisco de Alvarado", "Mihaela Gavrila", "Paola Panarese", "Silvia Leonzi", "Silvia Ciucciovino", "Roberto Ruggieri", "Francesca Alby", "Alessio Orsingher", "Pedro Bach y Targarona", "P. A. Datti", "Adriano Rossi", "Martina Rossi", "Giovanni Organtini", "Daniele De Bernardin", "Luigi Giobbe", "Dinah Streifeneder", "Speranza Falciano", "Filomena Gallo", "Adam Broż", "Natalia Cattelani", "Valeria Altobelli", "Silvia Tripodi", "Go Mandersloot", "Francesca Dragotto", "Giovanni Campus", "Eva Ravnbøl", "Edoardo Valli", "Dominicus de Marinis", "Luce Delhove", "Alessia Innocenti", "Zépur", "Panos Sarafianos", "Christos Dagklis", "Jetta Umiker", "Valentin-Ilie Făgărășian", "Samuel Spritzman", "Aldo D'Alfonso", "Luis Fulvio", "Spyros Ionas", "Danilo Chirico", "Daniele Piva", "Luca Bellizzi Cerri", "Juan de San Buenaventura", "Titus Aelius Eutychus", "Publius Aelius Secundus", "Callistus", "Erasinus", "Claudia Phialis", "Titus Aelius Montanus", "Marcus Aurelius Alexander", "Claudia Macaria", "Marcus Aurelius Donatus", "Hermeros", "Ampliatus", "Aelius Anthus", "Marcus Ulpius Graphicus", "Ulpia Fortunata", "Marcus Ulpius Felix", "Titus Flavius Philomusus", "Titus Flavius Hermes", "Tiberius Claudius Quadratus", "Lucius Cominius Vipsanius Salutaris", "Gaius Julius Senecio", "Marcus Cosconius Fronto", "Robert Cook" ]
simple question left
<?S P O ; ?S InstanceOf Type>
2
530
22,807
What is the {national museum} for {archives at} of {James Joyce}
Which gallery houses James Joyce's archives?
Which museum houses James Joyce's archives?
SELECT DISTINCT ?j WHERE { resource:James_Joyce property:archives_at ?j . ?j rdf:type ontology:national_museum }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q6882> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P485> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?obj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q17431399> }
select distinct ?obj where { wd:Q6882 wdt:P485 ?obj . ?obj wdt:P31 wd:Q17431399 }
[ "http://www.wikidata.org/entity/Q1672830" ]
[ "National Library of Ireland" ]
simple question right
<S P ?O ; ?O instanceOf Type>
1
3,868
11,041
What is {child} of {Pedro I} and {mother}
When was Pedro's child I and his mother?
When did child of Pedro I and mother?
SELECT ?d ?n WHERE { ?y property:mother ?d . . ?y property:child ?n . resource:Pedro_I_of_Brazil property:child ?y }
select distinct ?dataprop1 ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q939> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P40> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P580> ?dataprop1 . }
SELECT ?value1 ?obj WHERE { wd:Q939 p:P40 ?s . ?s ps:P40 ?obj . ?s pq:P25 ?value1 . }
[]
[]
[]
[]
3
107
13,525
What is {not the same as} of {mushroom}, that has {type of taxon} is {species} ?
Which is {not the same as} of {mushroom}, whose {type of taxon} is {species} ?
"Which is {not the same as} of {mushroom}, whose {type of taxon} is {species} ?"
SELECT ?d WHERE { ?d property:taxon_rank resource:species . resource:mushroom property:different_from ?d }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q83093> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1889>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P105> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q7432> . }
SELECT ?answer WHERE { wd:Q83093 wdt:P1889 ?answer . ?answer wdt:P105 wd:Q7432}
[]
[]
right-subgraph
E REF ?F . ?F RFG G
1
54
24,541
Give me {Mahavidya} that starts with {'t'}
What are the Mahavidya which begin with the letter t
What are the Mahavidya which start with the letter t
SELECT DISTINCT ?x WHERE { FILTER ( STRSTARTS ( LCASE ( ?x ) , 't' ) ) . ?x rdf:type ontology:Mahavidya }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q1076022>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1076022 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q2462108", "Tara", "http://www.wikidata.org/entity/Q2402056", "Tripura Sundari" ]
[ "Tara", "Tara", "Tripura Sundari", "Tripura Sundari" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
751
26,950
What is <PhilPapers publication ID> of <Mind> ?
[]
Which is the PhilPapers publication ID of Mind?
SELECT DISTINCT ?l WHERE { resource:Mind property:PhilPapers_publication_ID ?l }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1936338> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P3236> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q1936338 wdt:P3236 ?answer}
[]
[]
center
E REF ?F
1.1
1,247
29,811
What is the {data set} for {significant event} of {Juan Carlos I}
[]
Which is the data set for the event of Juan Carlos I?
SELECT DISTINCT ?z WHERE { resource:Juan_Carlos_I property:significant_event ?z . ?z rdf:type ontology:data_set }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q19943> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P793> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?obj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q1172284> }
select distinct ?obj where { wd:Q19943 wdt:P793 ?obj . ?obj wdt:P31 wd:Q1172284 }
[ "http://www.wikidata.org/entity/Q23702848" ]
[ "Panama Papers" ]
simple question right
<S P ?O ; ?O instanceOf Type>
1
367
24,255
Give me {isotope of hydrogen} that starts with {'t'}
What are the isotope of hydrogen which begin with the letter t
What are the isotope of hydrogen which start with the letter t
SELECT DISTINCT ?i WHERE { ?i rdf:type ontology:isotope_of_hydrogen . FILTER ( STRSTARTS ( LCASE ( ?i ) , 't' ) ) }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q466603>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q466603 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q54389", "tritium" ]
[ "tritium", "tritium" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
710
29,885
What is the {country} for {ethnic group} of {Indigenous peoples of the United States}
[]
what is the county of American Indians ?
SELECT DISTINCT ?t WHERE { ?t property:ethnic_group resource:indigenous_peoples_of_the_United_States . ?t rdf:type ontology:country }
select distinct ?subj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?subj . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P172> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q49297> . ?subj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q6256> }
select distinct ?sbj where { ?sbj wdt:P172 wd:Q49297 . ?sbj wdt:P31 wd:Q6256 }
[ "http://www.wikidata.org/entity/Q30" ]
[ "United States of America" ]
simple question left
<?S P O ; ?S InstanceOf Type>
2
998
14,648
What is {adjacent to} of {place of work} of {Alfred Stieglitz} ?
What is following to the put of work of Alfred Stieglitz?
What is next to the place of work of Alfred Stieglitz?
SELECT ?s WHERE { resource:Alfred_Stieglitz property:work_location ?t . ?t property:shares_border_with ?s }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q313055> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P937>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P47> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q313055 wdt:P937 ?X . ?X wdt:P47 ?answer}
[ "http://www.wikidata.org/entity/Q54064", "http://www.wikidata.org/entity/Q54066", "http://www.wikidata.org/entity/Q112915", "http://www.wikidata.org/entity/Q490505", "http://www.wikidata.org/entity/Q502459", "http://www.wikidata.org/entity/Q1208", "http://www.wikidata.org/entity/Q1711", "http://www.wikidata.org/entity/Q6115", "http://www.wikidata.org/entity/Q6119", "http://www.wikidata.org/entity/Q6139", "http://www.wikidata.org/entity/Q6142", "http://www.wikidata.org/entity/Q6146", "http://www.wikidata.org/entity/Q6173", "http://www.wikidata.org/entity/Q6178", "http://www.wikidata.org/entity/Q6181", "http://www.wikidata.org/entity/Q104192", "http://www.wikidata.org/entity/Q640426" ]
[ "Nassau County", "Westchester County", "Bergen County", "Hudson County", "Union County", "Brandenburg", "Potsdam", "Barnim", "Oberhavel District", "Havelland", "Potsdam-Mittelmark District", "Teltow-Fläming District", "Dahme-Spreewald District", "Oder-Spree District", "Märkisch-Oderland District", "Kleinmachnow", "Stahnsdorf" ]
right-subgraph
E REF xF . xF RFG ?G
2
4,475
14,226
What is {heir} of {Connecticut Colony}, that has {motto} is {Qui transtulit sustinet} ?
What beneficiary of the Connecticut Colony has the proverb "Qui Transtulit Sustinet"?
What heir of the Connecticut Colony has the motto "Qui Transtulit Sustinet"?
SELECT ?k WHERE { resource:Connecticut_Colony property:replaced_by ?k . ?k property:motto_text wd:Qui transtulit sustinet }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q951500> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1366>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1451> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <Qui transtulit sustinet> . }
SELECT ?answer WHERE { wd:Q951500 wdt:P1366 ?answer . ?answer wdt:P1451 wd:Qui transtulit sustinet}
[]
[]
right-subgraph
E REF ?F . ?F RFG G
1
177
7,577
What is {spouse} of {Aristotle Onassis} that is {start time} is {1946-12-28} ?
who did Aristotle Onassis marry on December 28, 1946
On December 28, 1946, who did Aristotle Onassis marry?
SELECT ?s WHERE { resource:Aristotle_Onassis property:spouse ?h . FILTER ( CONTAINS ( YEAR ( ?s ) , '1946' ) ) . ?h property:start_time ?s . ?h property:spouse ?s }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q180455> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P26> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P580> <1946-12-28> }
SELECT ?obj WHERE { wd:Q180455 p:P26 ?s . ?s ps:P26 ?obj . ?s pq:P580 ?x filter(contains(YEAR(?x),'1946')) }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
4,022
3,972
What is {population} of {Los Lagos Region} that is {determination method} is {census} ?
What did the census determine is the population of the Los Lagos Region?
What is {population} of {Los Lagos Region} where {determination method} is {census} ?
SELECT ?m WHERE { resource:Los_Lagos_Region property:population ?i . ?i property:determination_method resource:census . ?i property:population ?m }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q2178> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1082> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P459> <http://wikidata.dbpedia.org/resource/Q39825> }
SELECT ?obj WHERE { wd:Q2178 p:P1082 ?s . ?s ps:P1082 ?obj . ?s pq:P459 wd:Q39825 }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
417
22,108
What is the {urban municipality of Germany} for {twinned administrative body} of {Cardiff}
What other german city is like Cardiff?
Which German city is twinned with Cardiff?
SELECT DISTINCT ?l WHERE { ?l rdf:type ontology:urban_municipality_of_Germany . resource:Cardiff property:twinned_administrative_body ?l }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q10690> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P190> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?obj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q42744322> }
select distinct ?obj where { wd:Q10690 wdt:P190 ?obj . ?obj wdt:P31 wd:Q42744322 }
[ "http://www.wikidata.org/entity/Q1022" ]
[ "Stuttgart" ]
simple question right
<S P ?O ; ?O instanceOf Type>
1
3,169
26,692
What is <court> of <Bowers v. Hardwick> ?
[]
who is the court of bowers v.hardwick?
SELECT DISTINCT ?n WHERE { resource:Bowers_v._Hardwick property:court ?n }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q2907274> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P4884> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q2907274 wdt:P4884 ?answer}
[ "http://www.wikidata.org/entity/Q11201" ]
[ "Supreme Court of the United States" ]
center
E REF ?F
1.1
989
21,041
What is the {computer file} for {product or material produced} of {spreadsheet}
What computer record can deliver a spreadsheet?
What computer file can produce a spreadsheet?
SELECT DISTINCT ?p WHERE { ?p rdf:type ontology:computer_file . resource:spreadsheet property:product_or_material_produced ?p }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q183197> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1056> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?obj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q82753> }
select distinct ?obj where { wd:Q183197 wdt:P1056 ?obj . ?obj wdt:P31 wd:Q82753 }
[ "http://www.wikidata.org/entity/Q26853769" ]
[ "workbook" ]
simple question right
<S P ?O ; ?O instanceOf Type>
1
1,387
15,332
What is {national flower} of {located in the territorial entity} of {Yukon} ?
What is Yukon's national flower?
What is the national flower of the territorial entity of Yukon?
SELECT ?p WHERE { ?l property:official_symbol ?p . resource:Yukon property:located_in_the_administrative_territorial_entity ?l }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q2009> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P131>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2238> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q2009 wdt:P131 ?X . ?X wdt:P2238 ?answer}
[ "http://www.wikidata.org/entity/Q81056" ]
[ "North American beaver" ]
right-subgraph
E REF xF . xF RFG ?G
2
2,455
29,576
What is <maximum operating altitude> of <Airbus A380> ?
[]
Which is the maximum operating altitude for Airbus A380?
SELECT DISTINCT ?e WHERE { resource:Airbus_A380 property:maximum_operating_altitude ?e }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q5830> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2254> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q5830 wdt:P2254 ?answer}
[ "43000" ]
[ "43000" ]
center
E REF ?F
1.1
3,873
24,436
Give me {rapid transit} that starts with {'s'}
What are the leading academics starting with letter T?
tell me the rapid transit which starts with the letter s in it.
SELECT DISTINCT ?j WHERE { ?j rdf:type ontology:rapid_transit . FILTER ( STRSTARTS ( LCASE ( ?j ) , 's' ) ) }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q5503>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q5503 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q2607679", "Shiraz Metro", "http://www.wikidata.org/entity/Q867680", "Shenzhen Metro", "http://www.wikidata.org/entity/Q876780", "SkyTrain", "http://www.wikidata.org/entity/Q913314", "Santiago Metro", "http://www.wikidata.org/entity/Q736098", "Sapporo Municipal Subway", "http://www.wikidata.org/entity/Q914748", "Suzhou Rail Transit", "http://www.wikidata.org/entity/Q1345375", "Santo Domingo Metro", "http://www.wikidata.org/entity/Q306253", "Salvador Metro", "http://www.wikidata.org/entity/Q309023", "Seville Metro", "http://www.wikidata.org/entity/Q234707", "Sofia Metro", "http://www.wikidata.org/entity/Q250225", "Saint Petersburg Metro", "http://www.wikidata.org/entity/Q272926", "Stockholm metro", "http://www.wikidata.org/entity/Q2106", "Samara Metro", "http://www.wikidata.org/entity/Q40176", "Singapore MRT", "http://www.wikidata.org/entity/Q16950", "Seoul Metropolitan Subway", "http://www.wikidata.org/entity/Q7645442", "Surat Metro", "http://www.wikidata.org/entity/Q12267378", "Shijiazhuang Metro", "http://www.wikidata.org/entity/Q14774571", "Sydney Metro", "http://www.wikidata.org/entity/Q20063952", "Shaoxing Rail Transit", "http://www.wikidata.org/entity/Q18619348", "Srinagar Metro", "http://www.wikidata.org/entity/Q462201", "Shanghai Metro", "http://www.wikidata.org/entity/Q646466", "Shenyang Metro", "http://www.wikidata.org/entity/Q483343", "São Paulo Metrô", "http://www.wikidata.org/entity/Q625670", "Seoul Subway", "http://www.wikidata.org/entity/Q685945", "Sendai Subway" ]
[ "Shiraz Metro", "Shiraz Metro", "Shenzhen Metro", "Shenzhen Metro", "SkyTrain", "SkyTrain", "Santiago Metro", "Santiago Metro", "Sapporo Municipal Subway", "Sapporo Municipal Subway", "Suzhou Rail Transit", "Suzhou Rail Transit", "Santo Domingo Metro", "Santo Domingo Metro", "Salvador Metro", "Salvador Metro", "Seville Metro", "Seville Metro", "Sofia Metro", "Sofia Metro", "Saint Petersburg Metro", "Saint Petersburg Metro", "Stockholm metro", "Stockholm metro", "Samara Metro", "Samara Metro", "Singapore MRT", "Singapore MRT", "Seoul Metropolitan Subway", "Seoul Metropolitan Subway", "Surat Metro", "Surat Metro", "Shijiazhuang Metro", "Shijiazhuang Metro", "Sydney Metro", "Sydney Metro", "Shaoxing Rail Transit", "Shaoxing Rail Transit", "Srinagar Metro", "Srinagar Metro", "Shanghai Metro", "Shanghai Metro", "Shenyang Metro", "Shenyang Metro", "São Paulo Metrô", "São Paulo Metrô", "Seoul Subway", "Seoul Subway", "Sendai Subway", "Sendai Subway" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
260
4,001
what is the {official name} for {Nicholas II of Russia} has {place of birth} as {Pushkin} ?
Nicholas II of Russia was born in Pushkin under what name?
What is the name of Nicholas II of Russia who was born in Pushkin?
SELECT ?a WHERE { ?u property:place_of_birth resource:Pushkin . ?u property:official_name ?a . resource:Nicholas_II_of_Russia property:place_of_birth ?u }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q40787> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P19> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q7947> . ?statement <http://www.wikidata.org/entity/P1448> ?value. }
SELECT ?value WHERE { wd:Q40787 p:P19 ?s . ?s ps:P19 wd:Q7947 . ?s pq:P1448 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
446
7,510
what is the {end time} for {Eugenio Montale} has {position held} as {senatore a vita} ?
When did Eurgenio Montale step down from his position as senatore a vita?
When did Eugenio Montale retire from their position as senatore a vita?
SELECT ?m WHERE { ?v property:position_held resource:senatore_a_vita . resource:Eugenio_Montale property:position_held ?v . ?v property:end_time ?m }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q83174> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P39> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q826589> . ?statement <http://www.wikidata.org/entity/P582> ?value. }
SELECT ?value WHERE { wd:Q83174 p:P39 ?s . ?s ps:P39 wd:Q826589 . ?s pq:P582 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
3,955
11,356
What is {record held} of {disc golf} and {location}
What record is the held for plate golf and where is it held?
What record is the held for disc golf and where is it held?
SELECT ?m ?k WHERE { ?m property:location ?m . . resource:disc_golf property:record_held ?m . ?m property:record_held ?k }
select distinct ?dataprop1 ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q876737> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1000> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P580> ?dataprop1 . }
SELECT ?value1 ?obj WHERE { wd:Q876737 p:P1000 ?s . ?s ps:P1000 ?obj . ?s pq:P276 ?value1 . }
[]
[]
[]
[]
3
759
10,129
What is the {spouse} and the {position played on team / speciality} of {Derek_Jeter} ?
Who is the wife of Derek Jeter and in what position did play?
Who is the spouse, and what position does Derek Jeter play in?
SELECT ?s ?e WHERE { resource:Derek_Jeter property:spouse ?s . resource:Derek_Jeter property:position_played_on_team_/_speciality ?e }
SELECT ?ans_1 ?ans_2 WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q353511> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P26> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?ans_1. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q353511> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P413> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?ans_2. }
SELECT ?ans_1 ?ans_2 WHERE { wd:Q353511 wdt:P26 ?ans_1 . wd:Q353511 wdt:P413 ?ans_2 }
[ "http://www.wikidata.org/entity/Q5648816", "http://www.wikidata.org/entity/Q1143358" ]
[ "Hannah Jeter", "shortstop" ]
two intentions right subgraph
select where (ent-pred-obj1 . ent-pred-obj2)
1
393
29,928
What is the {aerial bombing} for {participant} of {Allies}
[]
Which was the aerial bombing participant of Allies?
SELECT DISTINCT ?j WHERE { ?j rdf:type ontology:aerial_bombing . ?j property:participant resource:Allies_of_the_Second_World_War }
select distinct ?subj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?subj . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P710> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q329888> . ?subj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q17912683> }
select distinct ?sbj where { ?sbj wdt:P710 wd:Q329888 . ?sbj wdt:P31 wd:Q17912683 }
[ "http://www.wikidata.org/entity/Q21008049" ]
[ "Bombing of Caen" ]
simple question left
<?S P O ; ?S InstanceOf Type>
2
1,304
3,282
What is the {single} with the {MIN(maximum Strahler number)} whose {drainage basin} is {Susquehanna River basin} ?
What is the single with the maximum strahler number in in which their drainge basin is in the susquehanna river basin?
which is the single with the maximum strahler number whose drainage basin is susquehanna river basin?
SELECT ?j WHERE { ?j property:maximum_Strahler_number ?q . ?j rdf:type ontology:single . ?j property:drainage_basin resource:Susquehanna_River_basin }
select ?ent where { ?ent <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q134556>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?ent . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1548>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj1. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?ent . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P4614> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q46129179> . } ORDER BY ASC(?obj1) LIMIT 5
select ?ent where { ?ent wdt:P31 wd:Q134556 . ?ent wdt:P1548 ?obj . ?ent wdt:P4614 wd:Q46129179} ORDER BY ASC(?obj)LIMIT 5
[ "http://www.wikidata.org/entity/Q11230358" ]
[ "Long Run" ]
rank
?E is_a Type. ?E pred Obj. ?E-secondClause value. MIN (value)
Rank2
504
15,882
What is {has children} of {cinematographer} of {Enkitta Mothathe} ?
The children of cinematographer of enkitta mothathe are?
who children of cinematographer of enkitta mothathe ?
SELECT ?a WHERE { resource:Enkitta_Mothathe property:director_of_photography ?j . ?j property:child ?a }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q17052490> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P344>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P40> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q17052490 wdt:P344 ?X . ?X wdt:P40 ?answer}
[ "http://www.wikidata.org/entity/Q211483" ]
[ "Rajendra Chola I" ]
left-subgraph
C RCD xD . xD RDE ?E
5
176
10,652
What is {end time} and {start time} of {{Guglielmo Marconi} has {spouse} as {Beatrice O'Brien}}
What is the end time and start time of Guglielmo Marconi whose wife is like Beatrice O'Brien
When is {end time} and {start time} of {{Guglielmo Marconi} whose {spouse} as {Beatrice O'Brien}}?
SELECT ?u ?p WHERE { ?h property:start_time ?p . ?h property:spouse resource:Beatrice Marconi . resource:Guglielmo_Marconi property:spouse ?h . ?h property:end_time ?u }
select distinct ?value1 ?value2 where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q36488> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P26> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q22230905>. ?statement <http://www.wikidata.org/entity/P580> ?value1 . ?statement <http://www.wikidata.org/entity/P2842> ?value2 }
SELECT ?value1 ?value2 WHERE { wd:Q36488 p:P26 ?s . ?s ps:P26 wd:Q22230905 . ?s pq:P582 ?value1 . ?s pq:P580 ?value2 }
[]
[]
[]
[]
2
853
6,137
what is the {end time} for {Pierre Bourdieu} has {employer} as {University of Lille} ?
When was Pierre Boudieu left the University of Lille?.
When did Pierre Bourdieu leave the University of Lille?
SELECT ?z WHERE { resource:Pierre_Bourdieu property:employer ?b . ?b property:employer resource:University_of_Lille . ?b property:end_time ?z }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q156268> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P108> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q3551621> . ?statement <http://www.wikidata.org/entity/P582> ?value. }
SELECT ?value WHERE { wd:Q156268 p:P108 ?s . ?s ps:P108 wd:Q3551621 . ?s pq:P582 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
2,582
28,955
What is <parliamentary term> of <Goa> ?
[]
Goa has what parliamentary term?
SELECT DISTINCT ?n WHERE { resource:Goa property:parliamentary_term ?n }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1171> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2937> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q1171 wdt:P2937 ?answer}
[ "http://www.wikidata.org/entity/Q37002670" ]
[ "unicameral legislature" ]
center
E REF ?F
1.1
3,252
25,216
Give me {operating system} that {programming language} {Assembly language} and which contains the word {vm} in their name
What is the identify of the working gadget that is written in Assembly language and incorporates 'vm' in its name?
What is the name of the operating system that is written in Assembly language and contains 'vm' in its name?
SELECT DISTINCT ?j WHERE { FILTER ( CONTAINS ( LCASE ( ?j ) , 'vm' ) ) . ?j property:programming_language resource:assembly_language . ?j rdf:type ontology:operating_system }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q9135>. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P277> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q165436>. ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'vm')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q9135 . ?sbj wdt:P277 wd:Q165436 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'vm')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q5013572", "VM" ]
[ "VM", "VM" ]
string matching type + relation contains word
<?S P O ; ?S instanceOf Type ; contains word >
3
3,675
23,156
Give me {specialty} that contains the word {visagie} in their name
What is the specialty that begins with the visagie letter?
What are the specialty which start with the letter visagie
SELECT DISTINCT ?e WHERE { FILTER ( CONTAINS ( LCASE ( ?e ) , 'visagie' ) ) . ?e rdf:type ontology:specialty }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q1047113>. ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'visagie')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1047113 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'visagie')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q9375979", "visagie" ]
[ "visagie", "visagie" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; contains word >
1
770
9,457
What is {award received} of {Thomas Keneally} that is {point in time} is {1982-0-0} ?
Which award did Thomas Keneally win in 1982?
What award did Thomas Keneally receive in the year 1982?
SELECT ?b WHERE { ?p property:award_received ?b . ?p property:point_in_time ?k . resource:Thomas_Keneally property:award_received ?p . FILTER ( CONTAINS ( YEAR ( ?k ) , '1982' ) ) }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q298334> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P585> <1982-0-0> }
SELECT ?obj WHERE { wd:Q298334 p:P166 ?s . ?s ps:P166 ?obj . ?s pq:P585 ?x filter(contains(YEAR(?x),'1982')) }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
5,902
6,527
what is the {postal code} for {Baidu} has {headquarters location} as {Beijing} ?
Headquartered at Beijing, what is the postal code of Baidu?
Get the postal code for Baidu that is headquartered at Beijing?
SELECT ?r WHERE { resource:Baidu property:headquarters_location ?f . ?f property:headquarters_location resource:Beijing . ?f property:postal_code ?r }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q14772> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P159> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q956> . ?statement <http://www.wikidata.org/entity/P281> ?value. }
SELECT ?value WHERE { wd:Q14772 p:P159 ?s . ?s ps:P159 wd:Q956 . ?s pq:P281 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
2,972
25,625
Give me {vegetation zone} that {continent} {Europe} and which that starts with {'t'}
Title a vegetation zone in Europe that begins with letter T
Name a vegetation zone in Europe that starts with letter T
SELECT DISTINCT ?i WHERE { ?i rdf:type ontology:vegetation_zone . FILTER ( STRSTARTS ( LCASE ( ?i ) , 't' ) ) . ?i property:continent resource:Europe }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q2083910>. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P30> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q46>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q2083910 . ?sbj wdt:P30 wd:Q46 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q69564", "taiga" ]
[ "taiga", "taiga" ]
string matching type + relation contains word
<?S P O ; ?S instanceOf Type ; starts with character >
4
3,572
9,219
What is {spouse} of {Dorothy Malone} that is {start time} is {1959-6-28} ?
In 1959, Dorothy Malone was wed what person?
Who did Dorothy Malone marry in 1959?
SELECT ?g WHERE { FILTER ( CONTAINS ( YEAR ( ?e ) , '1959' ) ) . ?n property:start_time ?e . ?n property:spouse ?g . resource:Dorothy_Malone property:spouse ?n }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q230126> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P26> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P580> <1959-6-28> }
SELECT ?obj WHERE { wd:Q230126 p:P26 ?s . ?s ps:P26 ?obj . ?s pq:P580 ?x filter(contains(YEAR(?x),'1959')) }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
5,664
14,392
What is {aircraft in fleet} of {managed by} of {Su-24} ?
who are airplane in armada of overseen by of Su-24 ?
who are aircraft in fleet of managed by of Su-24 ?
SELECT ?q WHERE { resource:Su-24 property:operator ?m . ?m property:item_operated ?q }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q210413> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P137>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P121> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q210413 wdt:P137 ?X . ?X wdt:P121 ?answer}
[]
[]
left-subgraph
C RCD xD . xD RDE ?E
5
24
5,143
What is {significant event} of {Charles I of Austria} that is {position held} is {king} ?
While Charles I of Austria was king, what significant event happened?
What significant event happened to Charles I of Austria while king?
SELECT ?e WHERE { ?l property:position_held resource:king . resource:Charles_I_of_Austria property:significant_event ?l . ?l property:significant_event ?e }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q51068> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P793> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P39> <http://wikidata.dbpedia.org/resource/Q12097> }
SELECT ?obj WHERE { wd:Q51068 p:P793 ?s . ?s ps:P793 ?obj . ?s pq:P39 wd:Q12097 }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
1,588
2,752
What is the {monument} with the {MAX(lighthouse range)} ?
What monument has the maximum lighthouse range?
WHICH IS THE MONUMENT WITH THE MAXIMUM LIGHTHOUSE RANGE
SELECT ?y WHERE { ?y rdf:type ontology:monument . ?y property:lighthouse_range ?o }
select ?ent where { ?ent <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q4989906>. ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?ent . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2929>. ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj .} ORDER BY DESC(?obj) LIMIT 5
select ?ent where { ?ent wdt:P31 wd:Q4989906 . ?ent wdt:P2929 ?obj } ORDER BY DESC(?obj)LIMIT 5
[ "http://www.wikidata.org/entity/Q24644213", "http://www.wikidata.org/entity/Q245151", "http://www.wikidata.org/entity/Q5856380", "http://www.wikidata.org/entity/Q3739792", "http://www.wikidata.org/entity/Q5856517" ]
[ "Cabo de Gata Lighthouse", "Tower of Hercules", "Faro cabo de palos", "Maspalomas Lighthouse", "Castillo de San Telmo" ]
rank
?E is_a Type, ?E pred Obj value. MAX/MIN (value)
Rank1
328
15,799
What is {written by} of {prequel of} of {The Structures of Everyday Life} ?
Who's the author of the prequel of The Structures of Everyday Life?
Who written the prequel of The Structures of Everyday Life?
SELECT ?g WHERE { ?c property:author ?g . resource:The_Structures_of_Everyday_Life property:followed_by ?c }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q55399602> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P156>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P50> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q55399602 wdt:P156 ?X . ?X wdt:P50 ?answer}
[ "http://www.wikidata.org/entity/Q185105" ]
[ "Fernand Braudel" ]
left-subgraph
C RCD xD . xD RDE ?E
5
9
28,949
What is <properties for this type> of <ambassador> ?
[]
Which is the properties for this type of ambassador?
SELECT DISTINCT ?r WHERE { resource:ambassador property:properties_for_this_type ?r }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q121998> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1963> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q121998 wdt:P1963 ?answer}
[]
[]
center
E REF ?F
1.1
3,246
8,365
what is the {start time} for {PayPal} has {parent organization} as {eBay} ?
When did eBay become the parent organization for PayPal?
When did eBay take over as the parent organization for PayPal?
SELECT ?d WHERE { ?s property:parent_organization resource:eBay . ?s property:start_time ?d . resource:PayPal property:parent_organization ?s }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q483959> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P749> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q58024> . ?statement <http://www.wikidata.org/entity/P580> ?value. }
SELECT ?value WHERE { wd:Q483959 p:P749 ?s . ?s ps:P749 wd:Q58024 . ?s pq:P580 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
4,810
12,544
What is {subtopic of} of {history of technology}, that has {study of} is {technique} ?
Which subtopic of the records of technology is the find out about of technique?
Which subtopic of the history of technology is the study of technique?
SELECT ?y WHERE { ?y property:studies resource:technique . resource:history_of_technology property:facet_of ?y }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q465352> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1269>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2578> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q2695280> . }
SELECT ?answer WHERE { wd:Q465352 wdt:P1269 ?answer . ?answer wdt:P2578 wd:Q2695280}
[]
[]
right-subgraph
E REF ?F . ?F RFG G
1
27
953
Did {Anil_Kapoor} {child} {Harshvardhan Kapoor} and {Rhea Kapoor} ?
Were Anil Kapoor's children really Harshvardhan Kapoor and Rhea Kapoor?
Is it true that Harshvardhan Kapoor and Rhea Kapoor were the sons of Anil Kapoor?
ASK WHERE { resource:Anil_Kapoor property:child resource:Rhea_Kapoor . resource:Anil_Kapoor property:child resource:Harshvardhan_Kapoor }
ASK { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q313956> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P40> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q23007906>. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q313956> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P40> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q7320299>. }
ASK WHERE { wd:Q313956 wdt:P40 wd:Q23007906 . wd:Q313956 wdt:P40 wd:Q7320299 }
[]
[]
boolean double one_hop right subgraph
Ask (ent-pred-obj1 . ent-pred-obj2)
2
453
24,889
Give me {armed forces} that starts with {'w'}
Tell me the name of the military that begins with "w"
Tell me the name of armed forces which starts with "w"
SELECT DISTINCT ?x WHERE { FILTER ( STRSTARTS ( LCASE ( ?x ) , 'w' ) ) . ?x rdf:type ontology:armed_forces }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q772547>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q772547 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q128781", "Wehrmacht" ]
[ "Wehrmacht", "Wehrmacht" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
2,388
29,362
What is <ICPC 2 ID> of <human papillomavirus infection> ?
[]
Which is the ICPC 2 ID of the human papillomavirus infection?
SELECT DISTINCT ?m WHERE { resource:human_papillomavirus_infection property:ICPC_2_ID ?m }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q184627> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P667> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q184627 wdt:P667 ?answer}
[]
[]
center
E REF ?F
1.1
3,659
22,870
What is the {imprint} for {record label} of {Suge Knight}
Which record name did Suge Knight record with?
Which record label did Suge Knight record with?
SELECT DISTINCT ?j WHERE { resource:Suge_Knight property:record_label ?j . ?j rdf:type ontology:imprint }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q455880> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P264> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?obj <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q2608849> }
select distinct ?obj where { wd:Q455880 wdt:P264 ?obj . ?obj wdt:P31 wd:Q2608849 }
[ "http://www.wikidata.org/entity/Q847018" ]
[ "Death Row Records" ]
simple question right
<S P ?O ; ?O instanceOf Type>
1
3,931
16,228
What is {founder} of {working for} of {Tamara Ecclestone} ?
The founder of Tamara Eccletone is working for whom?
Who is the founder of Tamara Ecclestone working for?
SELECT ?f WHERE { resource:Tamara_Ecclestone property:employer ?h . ?h property:founded_by ?f }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q2465450> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P108>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P112> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q2465450 wdt:P108 ?X . ?X wdt:P112 ?answer}
[ "http://www.wikidata.org/entity/Q172724" ]
[ "Bernie Ecclestone" ]
left-subgraph
C RCD xD . xD RDE ?E
5
48
10,740
What is {point in time} and {winner} of {{Joni Mitchell} has {award received} as {Grammy Lifetime Achievement Award}}
When and for what was the Grammy Lifetime Achievement Award given to Joni Mitchell?
When and for what did Joni Mitchell receive the Grammy Lifetime Achievement Award?
SELECT ?i ?q WHERE { ?c property:award_received resource:Grammy_Lifetime_Achievement_Award . resource:Joni_Mitchell property:award_received ?c . ?c property:winner ?q . ?c property:point_in_time ?i }
select distinct ?value1 ?value2 where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q205721> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q935843>. ?statement <http://www.wikidata.org/entity/P580> ?value1 . ?statement <http://www.wikidata.org/entity/P2842> ?value2 }
SELECT ?value1 ?value2 WHERE { wd:Q205721 p:P166 ?s . ?s ps:P166 wd:Q935843 . ?s pq:P585 ?value1 . ?s pq:P1346 ?value2 }
[]
[]
[]
[]
2
1,058
17
Did {Whitney_Houston} {voice type} {spinto soprano}?
Was Whitney Huston a spinto soprano?
Was Whitney Huston's voice a spinto soprano type?
ASK WHERE { resource:Whitney_Houston property:voice_type resource:spinto_soprano }
ASK { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q34389> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P412> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q2327598>. }
ASK WHERE { wd:Q34389 wdt:P412 wd:Q2327598 }
[]
[]
boolean one_hop right subgraph
Ask (ent-pred-obj)
1
17
14,898
What is {play} of {participated in} of {Micronesia at the 2011 World Aquatics Championships} ?
Who was a player who participated for Micronesia in the 2011 World Aquatics Championships?
Which {play} {participated in} {Micronesia at the 2011 World Aquatics Championships} ?
SELECT ?p WHERE { ?i property:sport ?p . resource:Micronesia_at_the_2011_World_Aquatics_Championships property:participant_in ?i }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1177107> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1344>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P641> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q1177107 wdt:P1344 ?X . ?X wdt:P641 ?answer}
[ "http://www.wikidata.org/entity/Q7707", "http://www.wikidata.org/entity/Q7735", "http://www.wikidata.org/entity/Q31920", "http://www.wikidata.org/entity/Q180692", "http://www.wikidata.org/entity/Q631004" ]
[ "water polo", "diving", "swimming", "synchronized swimming", "open water swimming" ]
left-subgraph
C RCD xD . xD RDE ?E
5
196
3,523
What is the {polymer} with the {MIN(Young's modulus)} whose {polymer of} is {bisphenol A} ?
What bisphonel A polymer has the lowest Young's modulus?
Name the bisphonel A polymer with the lowest Young's modulus ?
SELECT ?m WHERE { ?m property:tensile_modulus_of_elasticity ?y . ?m rdf:type ontology:polymer . ?m property:polymer_of resource:bisphenol_A . }
select ?ent where { ?ent <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q81163>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?ent . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P5480>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj1. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?ent . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P4600> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q271980> . } ORDER BY ASC(?obj1) LIMIT 5
select ?ent where { ?ent wdt:P31 wd:Q81163 . ?ent wdt:P5480 ?obj . ?ent wdt:P4600 wd:Q271980. } ORDER BY ASC(?obj)LIMIT 5
[]
[]
rank
?E is_a Type. ?E pred Obj. ?E-secondClause value. MIN (value)
Rank2
745
6,297
what is the {winner} for {Zakir Hussain} has {award received} as {Grammy Award for Best Contemporary World Music Album} ?
The winner for the Grammy Award for Best Contemporary World Music Album was Zakir Hussein?
Was Zakir Hussain the winner for the Grammy Award for Best Contemporary World Music Album?
SELECT ?f WHERE { resource:Zakir_Hussain property:award_received ?z . ?z property:winner ?f . ?z property:award_received resource:Grammy_Award_for_Best_Contemporary_World_Music_Album }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q144719> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q5593776> . ?statement <http://www.wikidata.org/entity/P1346> ?value. }
SELECT ?value WHERE { wd:Q144719 p:P166 ?s . ?s ps:P166 wd:Q5593776 . ?s pq:P1346 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
2,742
2,774
What is the {animated character} with the {MAX(number of children)} ?
What cartoon character has the greatest amount of kids?
Which animated character has got more number of children?
SELECT ?u WHERE { ?u property:number_of_children ?i . ?u rdf:type ontology:animated_character }
select ?ent where { ?ent <http://www.wikidata.org/entity/P31> <http://wikidata.dbpedia.org/resource/Q15711870>. ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?ent . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1971>. ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj .} ORDER BY DESC(?obj) LIMIT 5
select ?ent where { ?ent wdt:P31 wd:Q15711870 . ?ent wdt:P1971 ?obj } ORDER BY DESC(?obj)LIMIT 5
[ "http://www.wikidata.org/entity/Q51078973", "http://www.wikidata.org/entity/Q51870770", "http://www.wikidata.org/entity/Q748427", "http://www.wikidata.org/entity/Q9338679", "http://www.wikidata.org/entity/Q52401" ]
[ "Aku", "High Priestess", "Donkey", "Dragon", "Shrek" ]
rank
?E is_a Type, ?E pred Obj value. MAX/MIN (value)
Rank1
350
1,402
How many {mean lifetime} are for {neutron} ?
For a neutron, what is the mean lifetime?
What is the mean lifetime of a neutron?
SELECT ( COUNT ( ?x ) AS ?v ) { resource:neutron property:mean_lifetime ?x }
SELECT (COUNT(?obj) AS ?objs ) { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q2348> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2645> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . }
SELECT (COUNT(?obj) AS ?value ) { wd:Q2348 wdt:P2645 ?obj }
[ "1" ]
[ "1" ]
statement_property
Count Obj (ent-pred-obj)
Count_1
402
27,383
What is <TripAdvisor ID> of <British Museum> ?
[]
What is TripAdvisor ID for British Museum ?
SELECT DISTINCT ?z WHERE { resource:British_Museum property:TripAdvisor_ID ?z }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q6373> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P3134> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer. }
select distinct ?answer where { wd:Q6373 wdt:P3134 ?answer}
[]
[]
center
E REF ?F
1.1
1,680
18,433
Does the {disease burden} of the {laryngeal cancer} {equals} {2749816}
Does the disease burden of laryngeal cancer equal 2749816?
Is the disease burden of laryngeal cancer equal to 2749816?
ASK WHERE { resource:laryngeal_cancer property:disease_burden ?r . FILTER ( ?r = 2749816 ) }
ASK { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q852423> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2854>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj. filter(?obj = 2749816) }
ASK WHERE { wd:Q852423 wdt:P2854 ?obj filter(?obj = 2749816) }
[]
[]
boolean with filter
ASK ?sbj ?pred ?obj filter ?obj = num
3
451
8,058
What is {position held} of {Carlos Andrés Pérez da costa} that is {replaced by} is {Luis Herrera Campins} ?
What year did Luis Herrera Campins replace Andres Perez da costa and what position did he hold?
When Carlos Andres Perez da costa was replaced by Luis Herrera Campins, what position did he hold?
SELECT ?k WHERE { resource:Carlos_Andrés_Pérez property:position_held ?c . ?c property:replaced_by resource:Luis_Herrera_Campins . ?c property:position_held ?k }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q295790> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P39> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P1366> <http://wikidata.dbpedia.org/resource/Q455661> }
SELECT ?obj WHERE { wd:Q295790 p:P39 ?s . ?s ps:P39 ?obj . ?s pq:P1366 wd:Q455661 }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
4,503
16,803
What is {magnetic ordering} of {media} of {breach loading gun} ?
In the breach loading gun, what does the magnetic ordering do?
What does the magnetic ordering of the breach loading gun do?
SELECT ?a WHERE { resource:breach_loading_gun property:made_from_material ?n . ?n property:magnetic_ordering ?a }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q30276286> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P186>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P922> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q30276286 wdt:P186 ?X . ?X wdt:P922 ?answer}
[ "http://www.wikidata.org/entity/Q184207" ]
[ "ferromagnetism" ]
left-subgraph
C RCD xD . xD RDE ?E
5
1,167
11,699
What is {award received} of {Rabindranath Tagore} and {prize money}
At what time was Rabindranath Tagore awarded a prize, and what cash reward was included?
When did award received of Rabindranath Tagore and prize money?
SELECT ?i ?o WHERE { ?h property:award_received ?o . resource:Rabindranath_Tagore property:award_received ?h . ?h property:prize_money ?i . }
select distinct ?dataprop1 ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q7241> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P580> ?dataprop1 . }
SELECT ?value1 ?obj WHERE { wd:Q7241 p:P166 ?s . ?s ps:P166 ?obj . ?s pq:P2121 ?value1 . }
[]
[]
[]
[]
3
1,418
10,737
What is {pressure} and {phase of matter} of {{water} has {phase point} as {triple point}}
What are the three stages of water?
What are the three phases of water?
SELECT ?t ?r WHERE { ?h property:phase_point resource:triple_point . ?h property:pressure ?t . resource:water property:phase_point ?h . ?h property:phase_of_matter ?r }
select distinct ?value1 ?value2 where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q283> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P873> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q106410>. ?statement <http://www.wikidata.org/entity/P580> ?value1 . ?statement <http://www.wikidata.org/entity/P2842> ?value2 }
SELECT ?value1 ?value2 WHERE { wd:Q283 p:P873 ?s . ?s ps:P873 wd:Q106410 . ?s pq:P2077 ?value1 . ?s pq:P515 ?value2 }
[]
[]
[]
[]
2
1,051
16,622
What is {denomination} of {university attended} of {Daniela Georgieva} ?
What is group of college gone to the Daniela Georgieva ?
What is denomination of university attended the Daniela Georgieva ?
SELECT ?s WHERE { resource:Daniela_Georgieva property:educated_at ?m . ?m property:religion ?s }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q438928> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P69>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P140> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q438928 wdt:P69 ?X . ?X wdt:P140 ?answer}
[ "http://www.wikidata.org/entity/Q329646" ]
[ "United Methodist Church" ]
left-subgraph
C RCD xD . xD RDE ?E
5
22,164
8,785
What is {nominated for} of {Dominique Blanc} that is {statement is subject of} is {26th César Awards} ?
Which was Dominique Blanc nominated for at the 26th César Awards?
What was Dominique Blanc nominated for at the 26th César Awards?
SELECT ?v WHERE { resource:Dominique_Blanc property:nominated_for ?g . ?g property:nominated_for ?v . ?g property:statement_is_subject_of resource:26th_César_Awards }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q271481> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1411> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P805> <http://wikidata.dbpedia.org/resource/Q421542> }
SELECT ?obj WHERE { wd:Q271481 p:P1411 ?s . ?s ps:P1411 ?obj . ?s pq:P805 wd:Q421542 }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
5,230
11,334
What is {award received} of {Art Tatum} and {winner}
When did grant gotten of Craftsmanship Tatum and winner?
When did award received of Art Tatum and winner?
SELECT ?a ?x WHERE { resource:Art_Tatum property:award_received ?f . ?f property:award_received ?x . ?f property:winner ?a . }
select distinct ?dataprop1 ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q109053> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P580> ?dataprop1 . }
SELECT ?value1 ?obj WHERE { wd:Q109053 p:P166 ?s . ?s ps:P166 ?obj . ?s pq:P1346 ?value1 . }
[]
[]
[]
[]
3
708
11,885
What is {themed after} of {gray}, that has {unit conversion} is {0.001} ?
What is the themed after grey whose unit conversion is 0.001?
What is the themed after gray whose unit conversion is 0.001?
SELECT ?f WHERE { FILTER ( ?m = 0.001 ) . ?f property:conversion_to_standard_unit ?m . resource:gray property:based_on ?f }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q190095> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P144>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2442> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <0.001> . }
SELECT ?answer WHERE { wd:Q190095 wdt:P144 ?answer . ?answer wdt:P2442 ?x FILTER(contains(?x , '0.001'))}
[]
[]
right-subgraph
E REF ?F . ?F RFG G
1
60
9,373
What is {award received} of {Chow Yun-fat} that is {for work} is {Hong Kong 1941} ?
Name the award Chow Yun-fat received for his work Hong Kong 1941.
What award Chow Yun-fat received for his work Hong Kong 1941?
SELECT ?j WHERE { resource:Chow_Yun-fat property:award_received ?t . ?t property:award_received ?j . ?t property:for_work resource:Hong_Kong_1941 }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q181425> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P1686> <http://wikidata.dbpedia.org/resource/Q5894138> }
SELECT ?obj WHERE { wd:Q181425 p:P166 ?s . ?s ps:P166 ?obj . ?s pq:P1686 wd:Q5894138 }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
5,818
23,654
Give me {technical specification} that contains the word {webid} in their name
What are the specialized determination which begin with the letter webid
What are the technical specification which start with the letter webid
SELECT DISTINCT ?j WHERE { FILTER ( CONTAINS ( LCASE ( ?j ) , 'webid' ) ) . ?j rdf:type ontology:technical_specification }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q20819677>. ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'webid')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q20819677 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'webid')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q17087197", "WebID" ]
[ "WebID", "WebID" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; contains word >
1
1,875
17,255
What is {field of study} of {sculptor} of {pressure volume diagram} ?
who consider of stone worker of weight volume graph
who study of sculptor of pressure volume diagram ?
SELECT ?s WHERE { resource:pressure–volume_diagram property:creator ?o . ?o property:field_of_work ?s }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q311318> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P170>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P101> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q311318 wdt:P170 ?X . ?X wdt:P101 ?answer}
[ "http://www.wikidata.org/entity/Q12760", "http://www.wikidata.org/entity/Q101333", "http://www.wikidata.org/entity/Q14208553" ]
[ "steam engine", "mechanical engineering", "invention" ]
left-subgraph
C RCD xD . xD RDE ?E
5
459
5,686
what is the {statement is subject of} for {Burl Ives} has {award received} as {Academy Award for Best Supporting Actor} ?
For what movie did Burl ives receive the Academy Award for Best Supporting Actor?
For which movie did Burl Ives receive the Academy Award for Best Supporting Actor?
SELECT ?d WHERE { ?d property:award_received resource:Academy_Award_for_Best_Supporting_Actor . ?d property:statement_is_subject_of ?d . resource:Burl_Ives property:award_received ?d }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q315723> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q106291> . ?statement <http://www.wikidata.org/entity/P805> ?value. }
SELECT ?value WHERE { wd:Q315723 p:P166 ?s . ?s ps:P166 wd:Q106291 . ?s pq:P805 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
2,131
16,053
What is {next to} of {country of jurisdiction} of {Municipal President of Nezahualcóyotl} ?
Civil President of Nezahualcoytol's nation is bordered by what nation?
Municipal President of Nezahualcoytol's country is bordered by what nation?
SELECT ?x WHERE { resource:Municipal_President_of_Nezahualcóyotl property:applies_to_jurisdiction ?b . ?b property:shares_border_with ?x }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q52634198> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1001>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P47> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q52634198 wdt:P1001 ?X . ?X wdt:P47 ?answer}
[ "http://www.wikidata.org/entity/Q1489", "http://www.wikidata.org/entity/Q195769", "http://www.wikidata.org/entity/Q2115196", "http://www.wikidata.org/entity/Q2276224", "http://www.wikidata.org/entity/Q15121208" ]
[ "Mexico City", "Chimalhuacán", "Texcoco Municipality", "La Paz", "Reynosa Tamaulipas Mexico" ]
left-subgraph
C RCD xD . xD RDE ?E
5
18
15,824
What is {plays} of {organiser} of {UMB World Three-cushion Championship} ?
Which are the plays of the organizer of the UMB World Three-cushion Championship?
What are the plays of the organizer of the UMB World Three-cushion Championship?
SELECT ?v WHERE { ?k property:sport ?v . resource:UMB_World_Three-cushion_Championship property:organizer ?k }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1812109> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P664>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P641> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q1812109 wdt:P664 ?X . ?X wdt:P641 ?answer}
[ "http://www.wikidata.org/entity/Q917562", "http://www.wikidata.org/entity/Q917562" ]
[ "carom billiards", "carom billiards" ]
left-subgraph
C RCD xD . xD RDE ?E
5
237
7,524
What is {award received} of {Kareem Abdul-Jabbar} that is {point in time} is {1980-0-0} ?
What was the award presented to Kareem Abdul-Jabbar in 1980?
What award did Kareem Abdul-Jabbar receive in 1980?
SELECT ?k WHERE { resource:Kareem_Abdul-Jabbar property:award_received ?p . FILTER ( CONTAINS ( YEAR ( ?u ) , '1980' ) ) . ?p property:award_received ?k . ?p property:point_in_time ?u }
select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q179051> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?obj . ?statement <http://www.wikidata.org/entity/P585> <1980-0-0> }
SELECT ?obj WHERE { wd:Q179051 p:P166 ?s . ?s ps:P166 ?obj . ?s pq:P585 ?x filter(contains(YEAR(?x),'1980')) }
[]
[]
statement_property
(E pred F) prop ?value
statement_property_2
3,969
17,185
What is {number of out of school children} of {stockholders} of {The Birth of Venus} ?
During The Birth of Venus, how many school children stockholders are there?
What is number out of school children stockholders of The Birth of Venus ?
SELECT ?q WHERE { resource:The_Birth_of_Venus property:owned_by ?v . ?v property:number_of_out-of-school_children ?q }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q1283024> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P127>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P2573> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q1283024 wdt:P127 ?X . ?X wdt:P2573 ?answer}
[ "29418" ]
[ "29418" ]
right-subgraph
E REF xF . xF RFG ?G
2
1,237
26,693
What is <instance of> of <tablet computer> ?
[]
which is instance of tablet computer?
SELECT DISTINCT ?p WHERE { ?p rdf:type ontology:tablet_computer }
select distinct ?answer where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q155972>. }
select distinct ?answer where { ?answer wdt:P31 wd:Q155972}
[ "http://www.wikidata.org/entity/Q161255", "http://www.wikidata.org/entity/Q575487", "http://www.wikidata.org/entity/Q1056960", "http://www.wikidata.org/entity/Q3347594", "http://www.wikidata.org/entity/Q4043598", "http://www.wikidata.org/entity/Q5906810", "http://www.wikidata.org/entity/Q7072262", "http://www.wikidata.org/entity/Q7348430", "http://www.wikidata.org/entity/Q7463924", "http://www.wikidata.org/entity/Q10851863", "http://www.wikidata.org/entity/Q11189671", "http://www.wikidata.org/entity/Q11198639", "http://www.wikidata.org/entity/Q11198660", "http://www.wikidata.org/entity/Q11242633", "http://www.wikidata.org/entity/Q12058579", "http://www.wikidata.org/entity/Q12503050", "http://www.wikidata.org/entity/Q14536516", "http://www.wikidata.org/entity/Q16927603", "http://www.wikidata.org/entity/Q16927931", "http://www.wikidata.org/entity/Q17194170", "http://www.wikidata.org/entity/Q17623231", "http://www.wikidata.org/entity/Q23038806", "http://www.wikidata.org/entity/Q56538416", "http://www.wikidata.org/entity/Q61996714", "http://www.wikidata.org/entity/Q65072949", "http://www.wikidata.org/entity/Q67360444", "http://www.wikidata.org/entity/Q86247183", "http://www.wikidata.org/entity/Q86247329", "http://www.wikidata.org/entity/Q86247998", "http://www.wikidata.org/entity/Q86248315", "http://www.wikidata.org/entity/Q99373304" ]
[ "1&1 SmartPad", "Samsung Galaxy Tab 2 10.1", "Motorola Xoom", "OLPC XO-3", "Magic ID7003", "iFreeTablet", "O2 Joggler", "Samsung Galaxy Note 8.0", "Samsung Galaxy Tab 2 7.0", "Ainol NOVO5", "Asus Transformer Pad Infinity", "F-01D", "F-05D", "SC-01E", "Gigabyte M912", "Papan Tulis Boogie", "Samsung Galaxy Tab 3 10.1", "Asus Memo Pad 8", "Tegra Note 7", "Samsung Galaxy Tab S 10.5", "Shield Tablet", "Huawei MateBook", "Hometech Elite Tab 9.7 Retina Tablet PC", "Samsung Pen Master 386SL/20", "Huawei Mediapad M5", "iPad (7th generation)", "GT-P5100", "GT-P5110", "GT-N5100", "GT-N5110", "iPad (2020)" ]
center
?D RDE E
1.2
990
6,844
what is the {end time} for {Rainer Werner Fassbinder} has {spouse} as {Ingrid Caven} ?
which year Rainer Werner Fassbinder and his ex Ingrid Caven divorce?
When did Rainer Werner Fassbinder and his ex Ingrid Caven divorce?
SELECT ?d WHERE { resource:Rainer_Werner_Fassbinder property:spouse ?t . ?t property:spouse resource:Ingrid_Caven . ?t property:end_time ?d }
select distinct ?value where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q44426> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P26> . ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q70294> . ?statement <http://www.wikidata.org/entity/P582> ?value. }
SELECT ?value WHERE { wd:Q44426 p:P26 ?s . ?s ps:P26 wd:Q70294 . ?s pq:P582 ?value}
[]
[]
statement_property
(E pred ?Obj ) prop value
statement_property_1
3,289
12,795
What is {honors} of {Mike Nichols}, that has {victor} is {Alfred Hitchcock} ?
What are the respects of Mike Nichols, whose victor is Alfred Hitchcock?
What are the honors of Mike Nichols, whose victor is Alfred Hitchcock?
SELECT ?o WHERE { ?o property:winner resource:Alfred_Hitchcock . resource:Mike_Nichols property:award_received ?o }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q51537> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P166>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?answer. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P1346> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q7374> . }
SELECT ?answer WHERE { wd:Q51537 wdt:P166 ?answer . ?answer wdt:P1346 wd:Q7374}
[ "http://www.wikidata.org/entity/Q292044" ]
[ "AFI Life Achievement Award" ]
right-subgraph
E REF ?F . ?F RFG G
1
6,579
24,876
Give me {asymmetric warfare} that starts with {'d'}
WHAT ARE THE ASYMMETRIC WARFARE WHICH BEGIN WITH THE LETTER D
WHAT ARE THE ASYMMETRIC WARFARE WHICH START WITH THE LETTER D
SELECT DISTINCT ?g WHERE { FILTER ( STRSTARTS ( LCASE ( ?g ) , 'd' ) ) . ?g rdf:type ontology:asymmetric_warfare }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q752673>. ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'd')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q752673 . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'd')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[]
[]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; starts with character >
2
3,007
25,192
Give me {office building} that {located on street} {34th Street} and which contains the word {building} in their name
Name a constructing placed on 34th Street that contains the word "building" in its title
Name a building located on 34th Street that contains the word "building" in its name
SELECT DISTINCT ?p WHERE { ?p rdf:type ontology:office_building . FILTER ( CONTAINS ( LCASE ( ?p ) , 'building' ) ) . ?p property:located_on_street resource:34th_Street }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q1021645>. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P669> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q110049>. ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'building')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1021645 . ?sbj wdt:P669 wd:Q110049 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'building')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q9188", "Empire State Building", "http://www.wikidata.org/entity/Q99336904", "Madison Belmont Building" ]
[ "Empire State Building", "Empire State Building", "Madison Belmont Building", "Madison Belmont Building" ]
string matching type + relation contains word
<?S P O ; ?S instanceOf Type ; contains word >
3
484
17,273
What is {pronunciation audio} of {administrative centre} of {Joseon} ?
In the administrative centre of Joseon, what is the pronunciation audio?
What is the pronunciation audio of the administrative centre of Joseon ?
SELECT ?i WHERE { resource:Joseon property:capital ?k . ?k property:pronunciation_audio ?i }
SELECT ?answer WHERE { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resource/Q28179> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P36>. ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?X . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?X. ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P443> . ?statement2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> ?answer . }
SELECT ?answer WHERE { wd:Q28179 wdt:P36 ?X . ?X wdt:P443 ?answer}
[]
[]
right-subgraph
E REF xF . xF RFG ?G
2
147
23,504
Give me {color} that contains the word {yellow} in their name
Name a color in its name containing the word "yellow"
Name a color that contain the word "yellow " in its name
SELECT DISTINCT ?n WHERE { ?n rdf:type ontology:color . FILTER ( CONTAINS ( LCASE ( ?n ) , 'yellow' ) ) }
SELECT DISTINCT ?sbj ?sbj_label { ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> ?sbj . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.wikidata.org/entity/P31> . ?statement1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://wikidata.dbpedia.org/resource/Q1075>. ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'yellow')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:P31 wd:Q1075 . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'yellow')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
[ "http://www.wikidata.org/entity/Q3762369", "reddish Naples yellow", "http://www.wikidata.org/entity/Q3762375", "cadmium yellow", "http://www.wikidata.org/entity/Q899295", "Naples yellow", "http://www.wikidata.org/entity/Q943", "yellow", "http://www.wikidata.org/entity/Q987293", "School bus yellow", "http://www.wikidata.org/entity/Q1406264", "green-yellow", "http://www.wikidata.org/entity/Q15141414", "peach-yellow", "http://www.wikidata.org/entity/Q2293227", "selective yellow", "http://www.wikidata.org/entity/Q2259918", "stil de grain yellow", "http://www.wikidata.org/entity/Q6845574", "Mikado yellow", "http://www.wikidata.org/entity/Q11677707", "yellow no. 1", "http://www.wikidata.org/entity/Q16645086", "yellow-orange", "http://www.wikidata.org/entity/Q21864306", "yellow-green", "http://www.wikidata.org/entity/Q21864159", "yellow-white", "http://www.wikidata.org/entity/Q19888422", "yellow-brown", "http://www.wikidata.org/entity/Q22963960", "green-yellow", "http://www.wikidata.org/entity/Q55611196", "Indian Yellow", "http://www.wikidata.org/entity/Q68223248", "light yellow", "http://www.wikidata.org/entity/Q69914970", "NCS yellow", "http://www.wikidata.org/entity/Q71460159", "Skagen yellow", "http://www.wikidata.org/entity/Q84437365", "Microsoft yellow" ]
[ "reddish Naples yellow", "reddish Naples yellow", "cadmium yellow", "cadmium yellow", "Naples yellow", "Naples yellow", "yellow", "yellow", "School bus yellow", "School bus yellow", "green-yellow", "green-yellow", "peach-yellow", "peach-yellow", "selective yellow", "selective yellow", "stil de grain yellow", "stil de grain yellow", "Mikado yellow", "Mikado yellow", "yellow no. 1", "yellow no. 1", "yellow-orange", "yellow-orange", "yellow-green", "yellow-green", "yellow-white", "yellow-white", "yellow-brown", "yellow-brown", "green-yellow", "green-yellow", "Indian Yellow", "Indian Yellow", "light yellow", "light yellow", "NCS yellow", "NCS yellow", "Skagen yellow", "Skagen yellow", "Microsoft yellow", "Microsoft yellow" ]
string matching simple contains word
<?S P O ; ?S instanceOf Type ; contains word >
1
947