Stage designs

From MtM

Back to the overview of all query topics: back

List of all descriptions of stage designs

PREFIX wdt: <https://mtm.uni-trier.de/prop/direct/>
PREFIX wd: <https://mtm.uni-trier.de/entity/>

SELECT ?production ?productionLabel ?stageDescription WHERE {
  ?production wdt:P3 wd:Q309.
  ?production wdt:P35 ?stageDesign.
  ?stageDesign wdt:P54 ?stageDescription.

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en".
  }
}

Click here: Test SPARQL query

What do the stage designs consist of (what components)?

PREFIX wdt: <https://mtm.uni-trier.de/prop/direct/>
PREFIX wd: <https://mtm.uni-trier.de/entity/>
PREFIX p: <https://mtm.uni-trier.de/prop/>
PREFIX ps: <https://mtm.uni-trier.de/prop/statement/>
PREFIX pq: <https://mtm.uni-trier.de/prop/qualifier/>

SELECT ?productionLabel ?quantity ?colorLabel ?componentLabel WHERE {
  ?production wdt:P3 wd:Q309.
  ?production wdt:P35 ?stageDesign.

  ?stageDesign p:P50 ?statement.
  ?statement ps:P50 ?component.
  ?statement pq:P49 ?color.
  ?statement pq:P57 ?quantity.

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en".
  }
}
ORDER BY ?productionLabel

Click here: Test SPARQL query

Which productions used multimedia elements and what were these elements?

PREFIX wdt: <https://mtm.uni-trier.de/prop/direct/>
PREFIX wd: <https://mtm.uni-trier.de/entity/>

SELECT ?production ?productionLabel ?multimediaLabel ?description WHERE {
  ?production wdt:P3 wd:Q309.
  ?production wdt:P35 ?stageDesign.
  ?stageDesign wdt:P82 ?multimediaElement.
  ?stageDesign wdt:P54 ?description.

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en".
  }
}

Click here: Test SPARQL query