Difference between revisions of "MatVoc:SPARQL"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
This vocabulary can be queried by SPARQL at [{{SERVER}}/query the query service]. | This vocabulary can be queried by SPARQL at [{{SERVER}}/query the query service]. | ||
+ | |||
+ | See [[/batch]] for the queries designed for the batch export system. | ||
== Examples == | == Examples == | ||
Line 10: | Line 12: | ||
} | } | ||
ORDER BY ?enlabel | ORDER BY ?enlabel | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
}} | }} |
Revision as of 08:12, 21 November 2019
This vocabulary can be queried by SPARQL at the query service.
See /batch for the queries designed for the batch export system.
Examples
# Sample query: Narrower concepts of `material types` where both enlabel and jalabel exist
SELECT ?item ?enlabel ?jalabel
WHERE {
?item wdt:P8 wd:Q26.
?item rdfs:label ?enlabel FILTER (LANG(?enlabel) = "en") .
?item rdfs:label ?jalabel FILTER (LANG(?jalabel) = "ja") .
}
ORDER BY ?enlabel