LOC-6: Some extra indexes
authorHeikki Levanto <heikki@indexdata.dk>
Tue, 12 May 2015 09:48:53 +0000 (11:48 +0200)
committerHeikki Levanto <heikki@indexdata.dk>
Tue, 12 May 2015 09:48:53 +0000 (11:48 +0200)
bf.ref (for work and instance) returns what work/inst refers to %u
bf.work (for instance) returns teh instance(s) of a work
bf.instance (for work) returns the work this is an instance of

bibframe/triplestore.xml

index ac5b492..415e66a 100644 (file)
@@ -17,7 +17,7 @@
 
             <!-- bf.uri is a simple way to get to a thing -->
             <index type="bf.uri">
-                ?thing  rdf:type ?any FILTER( ?thing  = %u )
+                ?thing  %v_rel %v_obj FILTER( ?thing  = %u )
             </index>
 
             <!-- bf.type is a simple way to search for types -->
                 ?thing bf:contentCategory %u
             </index>
 
+            <!-- Find the work that has a given Instance -->
+            <index type="bf.instance">
+                %v_inst bf:instanceOf ?thing FILTER ( %v_inst = %u) 
+            </index>
+            
+            <!-- Find all works that refer to the given uri -->
+            <!-- useful after finding uris in the "small" bases -->
+            <!-- direct references only -->
+            <index type="bf.ref">
+                ?thing %v_rel %u
+            </index>
+
             <!-- Present formats -->
             <!-- BF-L comes from the "thing" template -->
             <!-- BF-V expands all links, even to instances but not other works -->
                     %v_isbn bf:identifierValue  %v FILTER( %v = %s )
                 }
             </index>
-            
+
             <!-- lccn number, a simpler index for id numbers -->
             <index type="bf.lccn">
                 ?thing bf:lccn %v_lccn .
                 %v_lccn bf:identifierValue  %v FILTER( %v = %s )
             </index>
 
+            <!-- Find the instances of a given work -->
+            <index type="bf.work">
+                ?thing bf:instanceOf %u
+            </index>
+
+            <!-- Find all instances that refer to the given uri -->
+            <!-- useful after finding uris in the "small" bases -->
+            <index type="bf.ref">
+                ?thing %v_rel %u
+            </index>
 
             <!-- Present formats. BF-L comes from "thing" -->
             <!-- Full instance, with the related work too -->