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