SPARQL Query: Collaborators and performers and their relationships to Mirage and Organic Honey using a UNION query

Note: Click on the left-hand arrows to reveal further information about each work. Right-click on an item to get its link to Wikidata.



Query:

To run this query yourself, copy and paste the code below in the gray box into the Wikidata Query Service. Click here for a tutorial and notes on how to modify this query or write your own!

 

Query source code:

#defaultView:Tree
SELECT ?artwork ?artworkLabel ?artworkDescription ?performer ?performerLabel 
?contributor_to_the_creative_work_or_subject 
?contributor_to_the_creative_work_or_subjectLabel ?object_has_role ?object_has_roleLabel 
WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?artwork wdt:P1343 wd:Q91439317;
           wdt:P31 wd:Q838948.
   { ?artwork wdt:P175 ?performer. }
  UNION
  {
    ?artwork p:P767 ?statement.
    ?statement ps:P767 ?contributor_to_the_creative_work_or_subject;
      pq:P3831 ?object_has_role.
  }
 }
ORDER BY ASC(?artworkLabel) ASC(?artwork)
LIMIT 1000