1.  
  2.  
  3. SELECT * WHERE {
  4.  
  5. GRAPH ?g {
  6. ?x a :Person .
  7. ?x :homepage <http://www.cs.vu.nl/~guus/> .
  8. ?x :name ?n .
  9. }
  10.  
  11. GRAPH <mailto:danbri@danbri.org> {
  12. <#homepageExperts> :member ?g .
  13.  
  14. }
  15.  
  16.  
  17. # the mailto@danbri.org graph could contain for eg:
  18. # <#homepageExperts> :member <mailto:pathayes@example.com> .
  19. # <#homepageExperts> :member <mailto:cygri@example.net> .
  20. #
  21. # SPARQL is ok with this?