diff --git a/gargantext.cabal b/gargantext.cabal
index 0ab8da3df0a80515e7bbca0b26089fc9509aa030..3edfffd0b1fce8ff12227566cbb185d76517ea59 100644
--- a/gargantext.cabal
+++ b/gargantext.cabal
@@ -5,7 +5,7 @@ cabal-version: 1.12
 -- see: https://github.com/sol/hpack
 
 name:           gargantext
-version: 0.0.6.9.9.5.6
+version:        0.0.6.9.9.5.6
 synopsis:       Search, map, share
 description:    Please see README.md
 category:       Data
diff --git a/src/Gargantext/API/Node/DocumentsFromWriteNodes.hs b/src/Gargantext/API/Node/DocumentsFromWriteNodes.hs
index ca4598ad1910b1c314af243e42ba453dfcd9b432..ed34970394d717a18fb4a70f233e73ee43514d3b 100644
--- a/src/Gargantext/API/Node/DocumentsFromWriteNodes.hs
+++ b/src/Gargantext/API/Node/DocumentsFromWriteNodes.hs
@@ -90,7 +90,7 @@ documentsFromWriteNodes uId nId Params { selection, lang, paragraphs } jobHandle
       markFailed (Just msg) jobHandle
       panic msg
 
-  frameWriteIds <- getChildrenByType nId NodeFrameWrite
+  frameWriteIds <- getChildrenByType nId Notes
 
   -- https://write.frame.gargantext.org/<frame_id>/download
   frameWrites <- mapM (\id -> getNodeWith id (Proxy :: Proxy HyperdataFrame)) frameWriteIds
diff --git a/src/Gargantext/Database/Action/Node.hs b/src/Gargantext/Database/Action/Node.hs
index 92e1d93c399d586fcd41401b57d5f9e725a11c7e..2c6fb186d42367a0a5e34134cf9f0d2b66913864 100644
--- a/src/Gargantext/Database/Action/Node.hs
+++ b/src/Gargantext/Database/Action/Node.hs
@@ -51,8 +51,8 @@ mkNodeWithParent NodeUser Nothing uId name =
 
 mkNodeWithParent _ Nothing _ _ = nodeError HasParent
 ------------------------------------------------------------------------
-mkNodeWithParent NodeFrameWrite i u n =
-  mkNodeWithParent_ConfigureHyperdata NodeFrameWrite i u n
+mkNodeWithParent Notes i u n =
+  mkNodeWithParent_ConfigureHyperdata Notes i u n
 
 mkNodeWithParent NodeFrameCalc i u n =
   mkNodeWithParent_ConfigureHyperdata NodeFrameCalc i u n
@@ -76,8 +76,8 @@ mkNodeWithParent_ConfigureHyperdata :: (HasNodeError err, HasDBid NodeType)
                                     -> UserId
                                     -> Name
                                     -> Cmd err [NodeId]
-mkNodeWithParent_ConfigureHyperdata NodeFrameWrite (Just i) uId name =
-  mkNodeWithParent_ConfigureHyperdata' NodeFrameWrite (Just i) uId name
+mkNodeWithParent_ConfigureHyperdata Notes (Just i) uId name =
+  mkNodeWithParent_ConfigureHyperdata' Notes (Just i) uId name
 
 mkNodeWithParent_ConfigureHyperdata NodeFrameCalc (Just i) uId name =
   mkNodeWithParent_ConfigureHyperdata' NodeFrameCalc (Just i) uId name
@@ -102,7 +102,7 @@ mkNodeWithParent_ConfigureHyperdata' :: (HasNodeError err, HasDBid NodeType)
                                     -> Cmd err [NodeId]
 mkNodeWithParent_ConfigureHyperdata' nt (Just i) uId name = do
   maybeNodeId <- case nt of
-     NodeFrameWrite -> insertNode NodeFrameWrite (Just name)   Nothing i uId
+     Notes -> insertNode Notes (Just name)   Nothing i uId
      NodeFrameCalc  -> insertNode NodeFrameCalc  (Just name)   Nothing i uId
      NodeFrameVisio -> insertNode NodeFrameVisio (Just name)   Nothing i uId
      _              -> nodeError NeedsConfiguration
@@ -112,7 +112,7 @@ mkNodeWithParent_ConfigureHyperdata' nt (Just i) uId name = do
     [n] -> do
       cfg <- view hasConfig
       u <- case nt of
-            NodeFrameWrite -> pure $ _gc_frame_write_url cfg
+            Notes -> pure $ _gc_frame_write_url cfg
             NodeFrameCalc  -> pure $ _gc_frame_calc_url  cfg
             NodeFrameVisio -> pure $ _gc_frame_visio_url  cfg
             _              -> nodeError NeedsConfiguration
diff --git a/src/Gargantext/Database/Admin/Config.hs b/src/Gargantext/Database/Admin/Config.hs
index d1b9c61a1ca5deec10159054948d57e95f6a55ec..bd30b636fdaea3370c9c990b74b4ba47b3cb8ce7 100644
--- a/src/Gargantext/Database/Admin/Config.hs
+++ b/src/Gargantext/Database/Admin/Config.hs
@@ -76,7 +76,7 @@ nodeTypeId n =
 
     NodeFile        -> 101
 
-    NodeFrameWrite    -> 991
+    Notes    -> 991
     NodeFrameCalc     -> 992
     NodeFrameNotebook -> 993
     NodeFrameVisio    -> 994
diff --git a/src/Gargantext/Database/Admin/Types/Hyperdata/Default.hs b/src/Gargantext/Database/Admin/Types/Hyperdata/Default.hs
index b34bce4f31c6ab9d2785ac519f52c798d739021d..e314e44d23d875dc4bc9b2931c4e74c257954fc3 100644
--- a/src/Gargantext/Database/Admin/Types/Hyperdata/Default.hs
+++ b/src/Gargantext/Database/Admin/Types/Hyperdata/Default.hs
@@ -115,7 +115,7 @@ defaultHyperdata NodeGraph          = DefaultGraph     defaultHyperdataGraph
 defaultHyperdata NodePhylo          = DefaultPhylo     defaultHyperdataPhylo
 defaultHyperdata NodeDashboard      = DefaultDashboard defaultHyperdataDashboard
 
-defaultHyperdata NodeFrameWrite     = DefaultFrameWrite defaultHyperdataFrame
+defaultHyperdata Notes     = DefaultFrameWrite defaultHyperdataFrame
 defaultHyperdata NodeFrameCalc      = DefaultFrameCalc  defaultHyperdataFrame
 defaultHyperdata NodeFrameVisio     = DefaultFrameVisio defaultHyperdataFrame
 defaultHyperdata NodeFrameNotebook      = DefaultFrameCalc  defaultHyperdataFrame
diff --git a/src/Gargantext/Database/Admin/Types/Node.hs b/src/Gargantext/Database/Admin/Types/Node.hs
index 1fe7dd223119d78174c94367b7e902d04cb74591..83c6e82193559a8bbb98ea754866110721070453 100644
--- a/src/Gargantext/Database/Admin/Types/Node.hs
+++ b/src/Gargantext/Database/Admin/Types/Node.hs
@@ -355,11 +355,12 @@ data NodeType = NodeUser
 -}
 
               -- Optional Nodes
-              | NodeFrameWrite | NodeFrameCalc | NodeFrameVisio | NodeFrameNotebook
+              | Notes | NodeFrameCalc | NodeFrameVisio | NodeFrameNotebook
               | NodeFile
 
   deriving (Show, Read, Eq, Generic, Bounded, Enum)
 
+
 instance GQLType NodeType
 instance FromJSON NodeType
 instance ToJSON NodeType
@@ -404,7 +405,7 @@ defaultName NodeDashboard     = "Board"
 defaultName NodeGraph         = "Graph"
 defaultName NodePhylo         = "Phylo"
 
-defaultName NodeFrameWrite    = "Note"
+defaultName Notes    = "Note"
 defaultName NodeFrameCalc     = "Calc"
 defaultName NodeFrameVisio    = "Visio"
 defaultName NodeFrameNotebook = "Code"