Dreams:projecttype: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
?pattern dreamst:P16 / dreamst:P10* target: | ?pattern dreamst:P16 / dreamst:P10* target: | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da". } | SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da". } | ||
} | |||
}} | |||
== Reports == | |||
{{SPARQL | query= | |||
PREFIX target: <https://dreams.wikibase.cloud/entity/Q170> | |||
PREFIX dreams: <https://dreams.wikibase.cloud/entity/> | |||
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/> | |||
SELECT | |||
?project_type ?project_typeLabel | |||
(CONCAT("#project-type/", SUBSTR(STR(?project_type), 38)) AS ?project_typeUrl) | |||
?report ?reportLabel | |||
(CONCAT("#report/", SUBSTR(STR(?report), 38)) AS ?reportUrl) | |||
WHERE { | |||
?project_type dreamst:P10* target: . | |||
?report dreamst:P2 / dreamst:P10* dreams:Q8 ; | |||
dreamst:P16 ?project_type . | |||
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en,it". } | |||
} | } | ||
}} | }} |
Revision as of 17:51, 11 August 2022
Patterns
PREFIX target: <https://dreams.wikibase.cloud/entity/Q170> PREFIX dreams: <https://dreams.wikibase.cloud/entity/> PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/> SELECT ?pattern ?patternLabel (CONCAT("#pattern/", SUBSTR(STR(?pattern), 38)) AS ?patternUrl) WHERE { ?pattern dreamst:P2 dreams:Q263 . ?pattern dreamst:P16 / dreamst:P10* target: SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da". } }
Reports
PREFIX target: <https://dreams.wikibase.cloud/entity/Q170> PREFIX dreams: <https://dreams.wikibase.cloud/entity/> PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/> SELECT ?project_type ?project_typeLabel (CONCAT("#project-type/", SUBSTR(STR(?project_type), 38)) AS ?project_typeUrl) ?report ?reportLabel (CONCAT("#report/", SUBSTR(STR(?report), 38)) AS ?reportUrl) WHERE { ?project_type dreamst:P10* target: . ?report dreamst:P2 / dreamst:P10* dreams:Q8 ; dreamst:P16 ?project_type . SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en,it". } }