query-44dca45fa99aef6d0218b6a38d477564
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?boxOfficeTitanic ?costTitanic
WHERE
{
wd:Q44578 wdt:P2142 ?boxOfficeTitanic. # Find the box office of Titanic
wd:Q44578 wdt:P2130 ?costTitanic. # Find the cost of Titanic
#?boxOfficeTitanic wdt:P31 wd:Q13780930. # Make sure the box office retuned is for worldwide
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Get labels
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?boxOfficeTitanic"):::projected
v2("?costTitanic"):::projected
c5(["bd:serviceParam"]):::iri
c1(["wd:Q44578"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c1 --"wdt:P2142"--> v1
c1 --"wdt:P2130"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end