Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. PREFIX wd: <http://www.wikidata.org/entity/>
  2. PREFIX wdt: <http://www.wikidata.org/prop/direct/>
  3. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  4. PREFIX p: <http://www.wikidata.org/prop/>
  5. PREFIX v: <http://www.wikidata.org/prop/statement/>
  6.  
  7. SELECT ?p ?w ?l ?wl WHERE {
  8. wd:Q30 p:P6/v:P6 ?p .
  9. ?p wdt:P26 ?w .
  10. OPTIONAL {
  11. ?p rdfs:label ?l filter (lang(?l) = "en") .
  12. }
  13. OPTIONAL {
  14. ?w rdfs:label ?wl filter (lang(?wl) = "en").
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement