#defaultView:Graph
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT ?concept2 ?concept2Label ?concept1 ?concept1Label {
?concept2 dreamst:P10 ?concept1 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da". }
}
Query
Graph example
#defaultView:Map
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT ?report ?reportLabel ?location ?locationLabel ?geo {
?report dreamst:P12 ?location .
?location dreamst:P13 ?geo
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
Sustainable Development Goals
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT ?sdg ?sdgLabel {
?sdg dreamst:P2 dreams:Q22 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Impact graph from ontology
#defaultView:Graph
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT ?concept2 ?concept2Label ?concept1 ?concept1Label {
?concept2 dreamst:P14 ?concept1 .
{ BIND (dreams:Q49 AS ?concept1) }
UNION
{
?concept1 dreamst:P14+ dreams:Q49 .
?concept2 dreamst:P14+ dreams:Q49 .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
Subactivities ontology
#defaultView:Graph
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT ?concept1 ?concept1Label ?rgb ?concept2 ?concept2Label {
?concept1 dreamst:P14 ?concept2 .
{ BIND (dreams:Q106 AS ?concept2) }
UNION
{
?concept1 dreamst:P14+ dreams:Q106 .
}
OPTIONAL {
?concept1 dreamst:P19 ?project_phase1 .
BIND( IF(?project_phase1 = dreams:Q97, "3182BD", "E6550D") AS ?rgb)
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
Query
Effect graph
#defaultView:Graph
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT
?subactivity ?subactivityLabel ?rgb
?impact ?impactLabel
{
BIND( IF(EXISTS { ?subactivity dreamst:P14+ dreams:Q106 }, "3182BD", "E6550D") AS ?rgb)
# ?impact dreamst:P14+ dreams:Q49 .
?subactivity dreamst:P9 ?impact .
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
Project types
#defaultView:Graph
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT
?project1 ?project1Label
?project2 ?project2Label
WHERE {
{ ?project1 dreamst:P14+ dreams:Q91 .
?project2 dreamst:P14+ dreams:Q91 }
UNION
{ BIND(dreams:Q91 AS ?project1) }
?project2 dreamst:P14 ?project1 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
Query
Effect patterns subject-object graph
#defaultView:Graph
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT
?subject ?subjectLabel
?object ?objectLabel
WHERE {
[] dreamst:P2 dreams:Q263 ;
dreamst:P33 ?subject ;
dreamst:P34 ?object .
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
Query
Quotes
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT DISTINCT
?pattern
?quote
WHERE {
?pattern dreamst:P18 ?quote .
}
Quote
Number of pages through time
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT
?year
?pages
?report ?reportLabel
WHERE {
?report dreamst:P2 dreams:Q4 ;
dreamst:P27 ?pages ;
dreamst:P6 ?publication_datetime .
BIND(STR(YEAR(?publication_datetime)) AS ?year)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?year
Quotes
Reports
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT
(GROUP_CONCAT(?q; separator=",") AS ?reports)
WHERE {
?report dreamst:P2 dreams:Q4 .
BIND(SUBSTR(STR(?report), 38) AS ?q)
BIND(1 AS ?dummy)
}
GROUP BY ?dummy
Significance types
PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>
SELECT
(GROUP_CONCAT(?q; separator=",") AS ?reports)
WHERE {
?report dreamst:P2 dreams:Q177 .
BIND(SUBSTR(STR(?report), 38) AS ?q)
BIND(1 AS ?dummy)
}
GROUP BY ?dummy