浏览代码

Add user-defined property graph on PATCH.

Stefano Cossu 7 年之前
父节点
当前提交
5ff8571862
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      lakesuperior/store_layouts/ldp_rs/rsrc_centric_layout.py

+ 5 - 0
lakesuperior/store_layouts/ldp_rs/rsrc_centric_layout.py

@@ -362,6 +362,11 @@ class RsrcCentricLayout:
         @param uid (string) UID of the resource to be patched.
         @param qry (dict) Parsed and translated query, or query string.
         '''
+        # Add meta graph for user-defined triples. This may not be used but
+        # it's simple and harmless to add here.
+        self.ds.graph(META_GR_URI).add(
+                (nsc['fcmain'][uid], nsc['foaf'].primaryTopic,
+                nsc['fcres'][uid]))
         gr = self.ds.graph(nsc['fcmain'][uid])
         self._logger.debug('Updating graph {} with statements: {}'.format(
             nsc['fcmain'][uid], qry))