question
stringlengths 12
150
| query
stringlengths 51
1.28k
|
---|---|
What did M0 's German employee write
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.written_by ?x1 .
?x1 ns:people.person.employment_history/ns:business.employment_tenure.company M0 .
?x1 ns:people.person.nationality ns:m.0345h
}
|
Who influenced M2 's Italian spouse
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x1 ns:people.person.nationality ns:m.03rjj .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M2 .
FILTER ( ?x1 != M2 )
}
|
Did M1 , M2 , M3 , M4 , and M5 star a actor 's actor
|
SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.character ?x1 .
?x1 a ns:film.actor .
M1 ns:film.film.starring/ns:film.performance.actor ?x0 .
M2 ns:film.film.starring/ns:film.performance.actor ?x0 .
M3 ns:film.film.starring/ns:film.performance.actor ?x0 .
M4 ns:film.film.starring/ns:film.performance.actor ?x0 .
M5 ns:film.film.starring/ns:film.performance.actor ?x0
}
|
Were M2 and M4 directed by M1 's French cinematographer 's parent and written by M3
|
SELECT count(*) WHERE {
?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x1 .
?x1 ns:film.cinematographer.film M1 .
?x1 ns:people.person.nationality ns:m.0f8l9c .
M2 ns:film.film.directed_by ?x0 .
M2 ns:film.film.written_by M3 .
M4 ns:film.film.directed_by ?x0 .
M4 ns:film.film.written_by M3
}
|
Was M0 M1 's director , executive producer , and editor
|
SELECT count(*) WHERE {
M0 ns:film.director.film M1 .
M0 ns:film.editor.film M1 .
M0 ns:film.producer.films_executive_produced M1
}
|
What did a actor of M0 write
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.written_by ?x1 .
?x1 ns:film.actor.film/ns:film.performance.character M0
}
|
Who influenced and was influenced by a Spanish actor
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x1 a ns:film.actor .
?x1 ns:people.person.nationality ns:m.06mkj
}
|
Did M1 direct M3 , edit M2 , and direct a prequel of M0
|
SELECT count(*) WHERE {
?x0 ns:film.film.sequel M0 .
M1 ns:film.director.film ?x0 .
M1 ns:film.director.film M3 .
M1 ns:film.editor.film M2
}
|
Who did a cinematographer that M2 and M3 were directed by marry and influence
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:film.cinematographer .
?x1 ns:film.director.film M2 .
?x1 ns:film.director.film M3 .
FILTER ( ?x0 != ?x1 )
}
|
Was a Canadian employee of M0 influenced by a person that influenced M3 and was influenced by M4
|
SELECT count(*) WHERE {
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M0 .
?x0 ns:people.person.nationality ns:m.0d060g .
?x1 a ns:people.person .
?x1 ns:influence.influence_node.influenced M3 .
?x1 ns:influence.influence_node.influenced_by M4
}
|
What person that directed M1 edited a film
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:film.director.film M1 .
?x0 ns:film.editor.film ?x1 .
?x1 a ns:film.film
}
|
Did M2 's Swedish employee write M0 and M1
|
SELECT count(*) WHERE {
?x0 ns:film.writer.film M0 .
?x0 ns:film.writer.film M1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M2 .
?x0 ns:people.person.nationality ns:m.0d0vqn
}
|
What was directed by M1 's female cinematographer
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x1 ns:film.cinematographer.film M1 .
?x1 ns:people.person.gender ns:m.02zsn
}
|
Was M1 executive produced by a film 's director and costume designer and edited by M2 and M3
|
SELECT count(*) WHERE {
?x0 ns:film.director.film ?x1 .
?x0 ns:film.film_costumer_designer.costume_design_for_film ?x1 .
?x1 a ns:film.film .
M1 ns:film.film.edited_by M2 .
M1 ns:film.film.edited_by M3 .
M1 ns:film.film.executive_produced_by ?x0
}
|
Did M1 edit , direct , write , executive produce , and produce a film
|
SELECT count(*) WHERE {
?x0 a ns:film.film .
M1 ns:film.director.film ?x0 .
M1 ns:film.editor.film ?x0 .
M1 ns:film.producer.films_executive_produced ?x0 .
M1 ns:film.producer.film|ns:film.production_company.films ?x0 .
M1 ns:film.writer.film ?x0
}
|
Was M0 written by M1 , written by M2 , and produced by M3
|
SELECT count(*) WHERE {
M0 ns:film.film.produced_by|ns:film.film.production_companies M3 .
M0 ns:film.film.written_by M1 .
M0 ns:film.film.written_by M2
}
|
What art director whose country of nationality employed M2 did M1 influence
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_art_director .
?x0 ns:influence.influence_node.influenced_by M1 .
?x0 ns:people.person.nationality ?x1 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person M2
}
|
Was a American actor of a film M1
|
SELECT count(*) WHERE {
?x0 a ns:film.film .
M1 ns:film.actor.film/ns:film.performance.character ?x0 .
M1 ns:people.person.nationality ns:m.09c7w0
}
|
What was edited by , produced by , and directed by M0 's distributor 's employee
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 ns:people.person.employment_history/ns:business.employment_tenure.company ?x2 .
?x2 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M0
}
|
Who influenced M2 's sequel 's female cinematographer
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x1 ns:film.cinematographer.film ?x2 .
?x1 ns:people.person.gender ns:m.02zsn .
?x2 ns:film.film.prequel M2
}
|
Was M2 produced by M3 and executive produced by a female founder and employee of M0
|
SELECT count(*) WHERE {
?x0 ns:organization.organization_founder.organizations_founded M0 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M0 .
?x0 ns:people.person.gender ns:m.02zsn .
M2 ns:film.film.executive_produced_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies M3
}
|
What film was written by M1 and edited by a costume designer 's sibling
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film .
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.written_by M1 .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x2 .
?x2 a ns:film.film_costumer_designer .
FILTER ( ?x1 != ?x2 )
}
|
Was M1 edited and directed by a company 's founder and employee
|
SELECT count(*) WHERE {
?x0 ns:organization.organization_founder.organizations_founded ?x1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x1 a ns:business.employer .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by ?x0
}
|
Did M2 influence and marry M1 's male producer 's male parent
|
SELECT count(*) WHERE {
?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x1 .
?x0 ns:people.person.gender ns:m.05zppz .
?x1 ns:film.producer.film|ns:film.production_company.films M1 .
?x1 ns:people.person.gender ns:m.05zppz .
FILTER ( M2 != ?x0 ) .
M2 ns:influence.influence_node.influenced ?x0 .
M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0
}
|
Did M3 marry a French screenwriter 's Canadian spouse
|
SELECT count(*) WHERE {
?x0 ns:people.person.nationality ns:m.0d060g .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:film.writer .
?x1 ns:people.person.nationality ns:m.0f8l9c .
FILTER ( ?x0 != ?x1 ) .
FILTER ( M3 != ?x0 ) .
M3 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0
}
|
Who influenced a character and was influenced by a Italian actor 's child
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x2 .
?x1 a ns:fictional_universe.fictional_character .
?x2 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?x3 .
?x3 a ns:film.actor .
?x3 ns:people.person.nationality ns:m.03rjj
}
|
Was M1 a film 's cinematographer , writer , and executive producer
|
SELECT count(*) WHERE {
?x0 a ns:film.film .
M1 ns:film.cinematographer.film ?x0 .
M1 ns:film.producer.films_executive_produced ?x0 .
M1 ns:film.writer.film ?x0
}
|
Was a film producer that a actor was influenced by and M3 influenced M1
|
SELECT count(*) WHERE {
?x0 a ns:film.actor .
M1 a ns:film.producer .
M1 ns:influence.influence_node.influenced ?x0 .
M1 ns:influence.influence_node.influenced_by M3
}
|
What was executive produced by a cinematographer of M0
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.executive_produced_by ?x1 .
?x1 ns:film.cinematographer.film M0
}
|
What was produced by and edited by a screenwriter that M1 and M2 married
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 a ns:film.writer .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M1 .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M2 .
FILTER ( ?x1 != M1 ) .
FILTER ( ?x1 != M2 )
}
|
Was M2 written by a British screenwriter 's sibling
|
SELECT count(*) WHERE {
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 a ns:film.writer .
?x1 ns:people.person.nationality ns:m.07ssc .
FILTER ( ?x0 != ?x1 ) .
M2 ns:film.film.written_by ?x0
}
|
Who was influenced by a person , influenced by a film producer , and influenced by M1 and M2
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x2 .
?x0 ns:influence.influence_node.influenced_by M1 .
?x0 ns:influence.influence_node.influenced_by M2 .
?x1 a ns:people.person .
?x2 a ns:film.producer
}
|
Was M2 directed by M1 's Chinese parent 's parent 's spouse and produced by M3
|
SELECT count(*) WHERE {
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x2 .
?x2 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M1 .
?x2 ns:people.person.nationality ns:m.0d05w3 .
FILTER ( ?x0 != ?x1 ) .
M2 ns:film.film.directed_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies M3
}
|
Was M0 a Mexican costume designer of M1
|
SELECT count(*) WHERE {
M0 ns:film.film_costumer_designer.costume_design_for_film M1 .
M0 ns:people.person.nationality ns:m.0b90_r
}
|
Was M2 edited by and produced by a female person 's child
|
SELECT count(*) WHERE {
?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?x1 .
?x1 a ns:people.person .
?x1 ns:people.person.gender ns:m.02zsn .
M2 ns:film.film.edited_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies ?x0
}
|
Did a art director 's country of nationality employ M0
|
SELECT count(*) WHERE {
?x0 ^ns:people.person.nationality ?x1 .
?x0 ns:business.employer.employees/ns:business.employment_tenure.person M0 .
?x1 a ns:film.film_art_director
}
|
Which person did a female sibling of M1 influence and marry
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.gender ns:m.02zsn .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M1 .
FILTER ( ?x0 != ?x1 ) .
FILTER ( ?x1 != M1 )
}
|
Which female person was influenced by M1
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by M1 .
?x0 ns:people.person.gender ns:m.02zsn
}
|
Did a sibling of M0 marry M1 and M2
|
SELECT count(*) WHERE {
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M0 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M2 .
FILTER ( ?x0 != M0 ) .
FILTER ( ?x0 != M1 ) .
FILTER ( ?x0 != M2 )
}
|
Was a employee of M0 and M1 a film distributor 's employee
|
SELECT count(*) WHERE {
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M0 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company M1 .
?x1 a ns:film.film_distributor
}
|
Was a actor 's employer founded by M0
|
SELECT count(*) WHERE {
?x0 ns:business.employer.employees/ns:business.employment_tenure.person ?x1 .
?x0 ns:organization.organization.founders M0 .
?x1 a ns:film.actor
}
|
Did a costume designer 's spouse 's spouse produce M0 and M1
|
SELECT count(*) WHERE {
?x0 ns:film.producer.film|ns:film.production_company.films M0 .
?x0 ns:film.producer.film|ns:film.production_company.films M1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x2 .
?x2 a ns:film.film_costumer_designer .
FILTER ( ?x0 != ?x1 ) .
FILTER ( ?x1 != ?x2 )
}
|
What was produced by a film distributor founded by M2 and M3 and executive produced by M0
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.executive_produced_by M0 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 a ns:film.film_distributor .
?x1 ns:organization.organization.founders M2 .
?x1 ns:organization.organization.founders M3
}
|
Was M0 's prequel executive produced by a female person and directed by M1
|
SELECT count(*) WHERE {
?x0 ns:film.film.directed_by M1 .
?x0 ns:film.film.executive_produced_by ?x1 .
?x0 ns:film.film.sequel M0 .
?x1 a ns:people.person .
?x1 ns:people.person.gender ns:m.02zsn
}
|
Were M1 and M2 edited by a film 's writer , star , and producer
|
SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.film ?x1 .
?x0 ns:film.producer.film|ns:film.production_company.films ?x1 .
?x0 ns:film.writer.film ?x1 .
?x1 a ns:film.film .
M1 ns:film.film.edited_by ?x0 .
M2 ns:film.film.edited_by ?x0
}
|
What did M0 edit , M2 's writer and editor write , and a art director write
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by M0 .
?x0 ns:film.film.written_by ?x1 .
?x0 ns:film.film.written_by ?x2 .
?x1 a ns:film.film_art_director .
?x2 ns:film.editor.film M2 .
?x2 ns:film.writer.film M2
}
|
What film producer influenced M1 , influenced a female sibling of M2 , and was influenced by M4 's art director
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.producer .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:influence.influence_node.influenced_by ?x2 .
?x1 ns:people.person.gender ns:m.02zsn .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M2 .
?x2 ns:film.film_art_director.films_art_directed M4 .
FILTER ( ?x1 != M2 )
}
|
What did a art director direct and M0 's producer , director , and costume designer write
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.written_by ?x2 .
?x1 a ns:film.film_art_director .
?x2 ns:film.director.film M0 .
?x2 ns:film.film_costumer_designer.costume_design_for_film M0 .
?x2 ns:film.producer.film|ns:film.production_company.films M0
}
|
What was executive produced by a film director and executive produced by M0
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.executive_produced_by ?x1 .
?x0 ns:film.film.executive_produced_by M0 .
?x1 a ns:film.director
}
|
What was executive produced , written , and edited by M0 's female sibling
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.executive_produced_by ?x1 .
?x0 ns:film.film.written_by ?x1 .
?x1 ns:people.person.gender ns:m.02zsn .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings M0 .
FILTER ( ?x1 != M0 )
}
|
Were M1 and M3 founded by M0 's founder 's employer 's employee and founder and founded by M2
|
SELECT count(*) WHERE {
?x0 ns:organization.organization_founder.organizations_founded ?x1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person ?x2 .
?x2 ns:organization.organization_founder.organizations_founded M0 .
M1 ns:organization.organization.founders ?x0 .
M1 ns:organization.organization.founders M2 .
M3 ns:organization.organization.founders ?x0 .
M3 ns:organization.organization.founders M2
}
|
What film director married , was influenced by , and influenced a screenwriter
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.director .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:film.writer .
FILTER ( ?x0 != ?x1 )
}
|
Who did M1 and M2 star and a sequel of M3 star
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:film.actor.film/ns:film.performance.film ?x1 .
?x0 ns:film.actor.film/ns:film.performance.film M1 .
?x0 ns:film.actor.film/ns:film.performance.film M2 .
?x1 ns:film.film.prequel M3
}
|
Was M2 written by M3 and M4 , directed by a executive producer and star of M1 , and written by a art director
|
SELECT count(*) WHERE {
?x0 a ns:film.film_art_director .
?x1 ns:film.actor.film/ns:film.performance.film M1 .
?x1 ns:film.producer.films_executive_produced M1 .
M2 ns:film.film.directed_by ?x1 .
M2 ns:film.film.written_by ?x0 .
M2 ns:film.film.written_by M3 .
M2 ns:film.film.written_by M4
}
|
Was a film distributor 's female founder M1
|
SELECT count(*) WHERE {
?x0 a ns:film.film_distributor .
M1 ns:organization.organization_founder.organizations_founded ?x0 .
M1 ns:people.person.gender ns:m.02zsn
}
|
Who did a person that M1 influenced and was influenced by influence and marry
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:people.person .
?x1 ns:influence.influence_node.influenced M1 .
?x1 ns:influence.influence_node.influenced_by M1 .
FILTER ( ?x0 != ?x1 )
}
|
What did a executive producer and art director of M0 found
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:organization.organization.founders ?x1 .
?x1 ns:film.film_art_director.films_art_directed M0 .
?x1 ns:film.producer.films_executive_produced M0
}
|
Did a film producer influence M1 's producer and director
|
SELECT count(*) WHERE {
?x0 a ns:film.producer .
?x0 ns:influence.influence_node.influenced ?x1 .
?x1 ns:film.director.film M1 .
?x1 ns:film.producer.film|ns:film.production_company.films M1
}
|
Was M2 executive produced by M3 and M4 and edited by a Chinese screenwriter
|
SELECT count(*) WHERE {
?x0 a ns:film.writer .
?x0 ns:people.person.nationality ns:m.0d05w3 .
M2 ns:film.film.edited_by ?x0 .
M2 ns:film.film.executive_produced_by M3 .
M2 ns:film.film.executive_produced_by M4
}
|
Were M1 and M2 edited by , written by , directed by , produced by , and executive produced by a film producer
|
SELECT count(*) WHERE {
?x0 a ns:film.producer .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by ?x0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M1 ns:film.film.written_by ?x0 .
M2 ns:film.film.directed_by ?x0 .
M2 ns:film.film.edited_by ?x0 .
M2 ns:film.film.executive_produced_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M2 ns:film.film.written_by ?x0
}
|
Who was influenced by M1 and influenced a British actor
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced_by M1 .
?x1 a ns:film.actor .
?x1 ns:people.person.nationality ns:m.07ssc
}
|
Which film editor was a actor that married a employee of M2
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.actor .
?x0 a ns:film.editor .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.employment_history/ns:business.employment_tenure.company M2 .
FILTER ( ?x0 != ?x1 )
}
|
What was founded by M1 's editor , producer , and cinematographer and founded by M0
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:organization.organization.founders ?x1 .
?x0 ns:organization.organization.founders M0 .
?x1 ns:film.cinematographer.film M1 .
?x1 ns:film.editor.film M1 .
?x1 ns:film.producer.film|ns:film.production_company.films M1
}
|
Was M3 directed by and written by a Spanish actor 's female child
|
SELECT count(*) WHERE {
?x0 ns:people.person.gender ns:m.02zsn .
?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?x1 .
?x1 a ns:film.actor .
?x1 ns:people.person.nationality ns:m.06mkj .
M3 ns:film.film.directed_by ?x0 .
M3 ns:film.film.written_by ?x0
}
|
Was a costume designer 's female parent 's male child M2
|
SELECT count(*) WHERE {
?x0 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child ?x1 .
?x0 ns:people.person.gender ns:m.02zsn .
?x1 a ns:film.film_costumer_designer .
M2 ns:people.person.gender ns:m.05zppz .
M2 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?x0
}
|
Who influenced a British character and influenced M1
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:influence.influence_node.influenced M1 .
?x1 a ns:fictional_universe.fictional_character .
?x1 ns:people.person.nationality ns:m.07ssc
}
|
Were M1 and M2 distributed by a company
|
SELECT count(*) WHERE {
?x0 a ns:business.employer .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor ?x0 .
M2 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor ?x0
}
|
Who was a Japanese art director employed by M3 's parent
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_art_director .
?x0 a ns:people.person .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x0 ns:people.person.nationality ns:m.03_3d .
?x1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M3
}
|
Were M1 , M2 , M3 , M4 , and M5 written by a character 's sibling
|
SELECT count(*) WHERE {
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 a ns:fictional_universe.fictional_character .
FILTER ( ?x0 != ?x1 ) .
M1 ns:film.film.written_by ?x0 .
M2 ns:film.film.written_by ?x0 .
M3 ns:film.film.written_by ?x0 .
M4 ns:film.film.written_by ?x0 .
M5 ns:film.film.written_by ?x0
}
|
Which Spanish cinematographer founded M1
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.cinematographer .
?x0 ns:organization.organization_founder.organizations_founded M1 .
?x0 ns:people.person.nationality ns:m.06mkj
}
|
Did M1 star a art director 's child and star M2
|
SELECT count(*) WHERE {
?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?x1 .
?x1 a ns:film.film_art_director .
M1 ns:film.film.starring/ns:film.performance.actor ?x0 .
M1 ns:film.film.starring/ns:film.performance.actor M2
}
|
Were M1 , M4 , M5 , M6 , and M7 directed by a art director and edited by M2 and M3
|
SELECT count(*) WHERE {
?x0 a ns:film.film_art_director .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by M2 .
M1 ns:film.film.edited_by M3 .
M4 ns:film.film.directed_by ?x0 .
M4 ns:film.film.edited_by M2 .
M4 ns:film.film.edited_by M3 .
M5 ns:film.film.directed_by ?x0 .
M5 ns:film.film.edited_by M2 .
M5 ns:film.film.edited_by M3 .
M6 ns:film.film.directed_by ?x0 .
M6 ns:film.film.edited_by M2 .
M6 ns:film.film.edited_by M3 .
M7 ns:film.film.directed_by ?x0 .
M7 ns:film.film.edited_by M2 .
M7 ns:film.film.edited_by M3
}
|
What was edited , directed , and produced by a actor that wrote and edited M1
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 a ns:film.actor .
?x1 ns:film.editor.film M1 .
?x1 ns:film.writer.film M1
}
|
Did M0 's executive producer marry a character
|
SELECT count(*) WHERE {
?x0 ns:film.producer.films_executive_produced M0 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 a ns:fictional_universe.fictional_character .
FILTER ( ?x0 != ?x1 )
}
|
Was a Japanese art director of M2 M0
|
SELECT count(*) WHERE {
M0 ns:film.film_art_director.films_art_directed M2 .
M0 ns:people.person.nationality ns:m.03_3d
}
|
Was a film 's Mexican editor M1
|
SELECT count(*) WHERE {
?x0 a ns:film.film .
M1 ns:film.editor.film ?x0 .
M1 ns:people.person.nationality ns:m.0b90_r
}
|
What was edited by a Japanese employee of M1 and executive produced by M0
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.executive_produced_by M0 .
?x1 ns:people.person.employment_history/ns:business.employment_tenure.company M1 .
?x1 ns:people.person.nationality ns:m.03_3d
}
|
Who was influenced by M1 , influenced by a screenwriter , and influenced by a cinematographer
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:influence.influence_node.influenced_by ?x2 .
?x0 ns:influence.influence_node.influenced_by M1 .
?x1 a ns:film.writer .
?x2 a ns:film.cinematographer
}
|
What was edited by , executive produced by , written by , produced by , and directed by M0 's female employee
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.directed_by ?x1 .
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.executive_produced_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x0 ns:film.film.written_by ?x1 .
?x1 ns:people.person.employment_history/ns:business.employment_tenure.company M0 .
?x1 ns:people.person.gender ns:m.02zsn
}
|
Was a production company that distributed M2 and M3 M0
|
SELECT count(*) WHERE {
M0 a ns:film.production_company .
M0 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M2 .
M0 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M3
}
|
Who was a art director that M2 was edited by
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_art_director .
?x0 a ns:people.person .
?x0 ns:film.editor.film M2
}
|
Was M2 directed by , written by , edited by , produced by , and executive produced by a Swedish cinematographer of M1
|
SELECT count(*) WHERE {
?x0 ns:film.cinematographer.film M1 .
?x0 ns:people.person.nationality ns:m.0d0vqn .
M2 ns:film.film.directed_by ?x0 .
M2 ns:film.film.edited_by ?x0 .
M2 ns:film.film.executive_produced_by ?x0 .
M2 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M2 ns:film.film.written_by ?x0
}
|
Was M0 's actor 's male spouse M1
|
SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.character M0 .
FILTER ( M1 != ?x0 ) .
M1 ns:people.person.gender ns:m.05zppz .
M1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0
}
|
Did a company acquire a employer of M1 and M2
|
SELECT count(*) WHERE {
?x0 a ns:business.employer .
?x0 ns:organization.organization.companies_acquired/ns:business.acquisition.company_acquired ?x1 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person M1 .
?x1 ns:business.employer.employees/ns:business.employment_tenure.person M2
}
|
Who married and influenced a British spouse of M2
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:people.person.nationality ns:m.07ssc .
?x1 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M2 .
FILTER ( ?x0 != ?x1 ) .
FILTER ( ?x1 != M2 )
}
|
What costume designer founded and was employed by M1 's parent
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.film_costumer_designer .
?x0 ns:organization.organization_founder.organizations_founded ?x1 .
?x0 ns:people.person.employment_history/ns:business.employment_tenure.company ?x1 .
?x1 ns:people.person.children|ns:fictional_universe.fictional_character.children|ns:organization.organization.child/ns:organization.organization_relationship.child M1
}
|
Was M1 produced by and executive produced by a costume designer , art director , and cinematographer of M0
|
SELECT count(*) WHERE {
?x0 ns:film.cinematographer.film M0 .
?x0 ns:film.film_art_director.films_art_directed M0 .
?x0 ns:film.film_costumer_designer.costume_design_for_film M0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0
}
|
Was M3 written by a female American sibling of a cinematographer
|
SELECT count(*) WHERE {
?x0 ns:people.person.gender ns:m.02zsn .
?x0 ns:people.person.nationality ns:m.09c7w0 .
?x0 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x1 .
?x1 a ns:film.cinematographer .
FILTER ( ?x0 != ?x1 ) .
M3 ns:film.film.written_by ?x0
}
|
Did M1 acquire M0 's child
|
SELECT count(*) WHERE {
?x0 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent M0 .
M1 ns:organization.organization.companies_acquired/ns:business.acquisition.company_acquired ?x0
}
|
What did M0 's costume designer , producer , and cinematographer produce
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 ns:film.cinematographer.film M0 .
?x1 ns:film.film_costumer_designer.costume_design_for_film M0 .
?x1 ns:film.producer.film|ns:film.production_company.films M0
}
|
Did a writer of M0 distribute M1 and M2
|
SELECT count(*) WHERE {
?x0 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M1 .
?x0 ns:film.film_distributor.films_distributed/ns:film.film_film_distributor_relationship.film M2 .
?x0 ns:film.writer.film M0
}
|
Who was influenced by a costume designer 's sibling , influenced M1 , and was influenced by M2
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:influence.influence_node.influenced_by ?x1 .
?x0 ns:influence.influence_node.influenced_by M2 .
?x1 ns:people.person.sibling_s/ns:people.sibling_relationship.sibling|ns:fictional_universe.fictional_character.siblings/ns:fictional_universe.sibling_relationship_of_fictional_characters.siblings ?x2 .
?x2 a ns:film.film_costumer_designer .
FILTER ( ?x1 != ?x2 )
}
|
Which character edited and wrote M1
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:fictional_universe.fictional_character .
?x0 ns:film.editor.film M1 .
?x0 ns:film.writer.film M1
}
|
Did M2 influence a editor of M0 and influence a character
|
SELECT count(*) WHERE {
?x0 ns:film.editor.film M0 .
?x1 a ns:fictional_universe.fictional_character .
M2 ns:influence.influence_node.influenced ?x0 .
M2 ns:influence.influence_node.influenced ?x1
}
|
Was M1 executive produced , produced , edited , directed , and written by a art director , star , and cinematographer of M0
|
SELECT count(*) WHERE {
?x0 ns:film.actor.film/ns:film.performance.film M0 .
?x0 ns:film.cinematographer.film M0 .
?x0 ns:film.film_art_director.films_art_directed M0 .
M1 ns:film.film.directed_by ?x0 .
M1 ns:film.film.edited_by ?x0 .
M1 ns:film.film.executive_produced_by ?x0 .
M1 ns:film.film.produced_by|ns:film.film.production_companies ?x0 .
M1 ns:film.film.written_by ?x0
}
|
Which French cinematographer influenced M1
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:film.cinematographer .
?x0 ns:influence.influence_node.influenced M1 .
?x0 ns:people.person.nationality ns:m.0f8l9c
}
|
Who did M1 's female producer marry
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 .
?x1 ns:film.producer.film|ns:film.production_company.films M1 .
?x1 ns:people.person.gender ns:m.02zsn .
FILTER ( ?x0 != ?x1 )
}
|
Who influenced M1 's Italian executive producer 's child
|
SELECT DISTINCT ?x0 WHERE {
?x0 a ns:people.person .
?x0 ns:influence.influence_node.influenced ?x1 .
?x1 ns:people.person.parents|ns:fictional_universe.fictional_character.parents|ns:organization.organization.parent/ns:organization.organization_relationship.parent ?x2 .
?x2 ns:film.producer.films_executive_produced M1 .
?x2 ns:people.person.nationality ns:m.03rjj
}
|
What was edited and produced by a Mexican costume designer
|
SELECT DISTINCT ?x0 WHERE {
?x0 ns:film.film.edited_by ?x1 .
?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x1 .
?x1 a ns:film.film_costumer_designer .
?x1 ns:people.person.nationality ns:m.0b90_r
}
|
Were M1 and M2 distributed by M0 's editor 's employer
|
SELECT count(*) WHERE {
?x0 ns:business.employer.employees/ns:business.employment_tenure.person ?x1 .
?x1 ns:film.editor.film M0 .
M1 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor ?x0 .
M2 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor ?x0
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.