rsrc_centric_layout.sparql 687 B

12345678910111213141516171819202122
  1. PREFIX dcterms: <http://purl.org/dc/terms/>
  2. PREFIX fcrepo: <http://fedora.info/definitions/v4/repository#>
  3. PREFIX foaf: <http://xmlns.com/foaf/0.1/>
  4. PREFIX ldp: <http://www.w3.org/ns/ldp#>
  5. INSERT DATA {
  6. GRAPH <info:fcsystem/graph/userdata/_main/> {
  7. <info:fcres/> dcterms:title "Repository Root" .
  8. }
  9. GRAPH <info:fcsystem/graph/admin/> {
  10. <info:fcres/> a
  11. fcrepo:RepositoryRoot , fcrepo:Resource , fcrepo:Container ,
  12. ldp:Container , ldp:BasicContainer , ldp:RDFSource ;
  13. .
  14. }
  15. GRAPH <info:fcsystem/meta> {
  16. <info:fcsystem/graph/admin/> foaf:primaryTopic <info:fcres/> .
  17. <info:fcsystem/graph/userdata/_main/> foaf:primaryTopic <info:fcres/> .
  18. }
  19. }