Project:SPARQL/examples: Difference between revisions
Jump to navigation
Jump to search
OlafJanssen (talk | contribs) m (OlafJanssen moved page Project:SPARQL query service/queries/examples to Project:SPARQL/examples: testje met path) |
OlafJanssen (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
=== | ==Examples== | ||
=== Mapping === | |||
<sparql tryit="1"> | <sparql tryit="1"> | ||
PREFIX bd: <http://www.bigdata.com/rdf#> | PREFIX bd: <http://www.bigdata.com/rdf#> |
Revision as of 17:23, 29 June 2022
Examples
Mapping
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <https://kbtestwikibase.wikibase.cloud/prop/direct/>
PREFIX p: <https://kbtestwikibase.wikibase.cloud/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?p ?pLabel ?pDescription ?pAltLabel ?w WHERE {
?p rdf:type wikibase:Property.
OPTIONAL{?p wdt:P1 ?w.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ASC(xsd:integer(STRAFTER(STR(?p), 'P')))