Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. SELECT ?instance_of ?label_he ?label_en ?place_of_birthLabel ?date_of_birth ?place_of_death ?place_of_deathLabel ?date_of_death ?URL WHERE {
  2. ?instance_of rdfs:label ?label_he.
  3. ?instance_of rdfs:label ?label_en.
  4. ?instance_of wdt:P31 wd:Q5.
  5. ?instance_of wdt:P19 ?place_of_birth.
  6. ?instance_of wdt:P569 ?date_of_birth.
  7. ?instance_of wdt:P20 ?place_of_death.
  8. ?instance_of wdt:P570 ?date_of_death.
  9. ?instance_of rdfs:label "Albert Einstein"@en
  10. OPTIONAL { ?instance_of wdt:P31 ?record_label. }
  11. OPTIONAL { ?instance_of wdt:P31 ?instance_of. }
  12. OPTIONAL { ?instance_of wdt:P2699 ?URL. }
  13. FILTER(((LANG(?label_he)) = "he") && ((LANG(?label_en)) = "en"))
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement