Commit 12232f3a authored by Fabien Manière's avatar Fabien Manière

new recursiveParents function to get all parents from a node ID to the root element

parent 03bd0bf6
......@@ -37,6 +37,7 @@ module Gargantext.Database.Query.Tree
, sharedTreeUpdate
, dbTree
, updateTree
, recursiveParents
)
where
......@@ -389,4 +390,25 @@ isIn cId docId = ( == [Only True])
WHERE nn.node1_id = ?
AND nn.node2_id = ?;
|] (cId, docId)
recursiveParents :: NodeId
-> [NodeType]
-> Cmd err [DbTreeNode]
recursiveParents nodeId nodeTypes = map (\(nId, tId, pId, n) -> DbTreeNode nId tId pId n)
<$> runPGSQuery [sql|
WITH RECURSIVE recursiveParents AS(
SELECT id, typename, parent_id, name
FROM public.nodes WHERE id = ?
UNION ALL
SELECT n.id, n.typename, n.parent_id, n.name
FROM public.nodes n
INNER JOIN recursiveParents rp ON n.id = rp.parent_id
WHERE n.typename IN ?
) SELECT * FROM recursiveParents;
|] (nodeId, In typename)
where
typename = map nodeTypeId ns
ns = case nodeTypes of
[] -> allNodeTypes
_ -> nodeTypes
-----------------------------------------------------
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment