diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp
index 18eeb8d5eab991d681f5d4871b5a8e2ad025b5e3..9ea1ab19bd325c51cf4c41cd48b0210b9ee8709a 100644
--- a/include/aidge/graph/GraphView.hpp
+++ b/include/aidge/graph/GraphView.hpp
@@ -128,7 +128,17 @@ public:
     void setOrderedInputs(const std::vector<std::pair<NodePtr, IOIndex_t>>& inputs);
     void setOrderedOutputs(const std::vector<std::pair<NodePtr, IOIndex_t>>& outputs);
 
+    /**
+     * @brief Get inputs of the current GraphView with their associated id.
+     * The rank of the nodes are their rank in the vector.
+     * @return const std::vector<std::pair<NodePtr, IOIndex_t>>&
+     */
     inline const std::vector<std::pair<NodePtr, IOIndex_t>>& getOrderedInputs() const noexcept { return mInputNodes; };
+    /**
+     * @brief Get outputs of the current GraphView with their associated id.
+     * The rank of the nodes are their rank in the vector.
+     * @return const std::vector<std::pair<NodePtr, IOIndex_t>>&
+     */
     inline const std::vector<std::pair<NodePtr, IOIndex_t>>& getOrderedOutputs() const noexcept { return mOutputNodes; };
 
     /**
diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp
index 5c1f0fdab6264b9e355d7376281992471f2f7bb1..e6dd128af2548fea10a6ee8b95b3bddde2b27b2c 100644
--- a/src/graph/GraphView.cpp
+++ b/src/graph/GraphView.cpp
@@ -72,9 +72,7 @@ Aidge::Connector Aidge::GraphView::operator()(
 bool Aidge::GraphView::inView(const std::shared_ptr<Aidge::Node>& nodePtr) const {
     return mNodes.find(nodePtr) != mNodes.cend();
 }
-std::string Aidge::GraphView::name() const { return mName; }
 
-void Aidge::GraphView::setName(const std::string &name) { mName = name; }
 
 void Aidge::GraphView::save(const std::string& path, bool verbose, bool showProducers) const {
     auto fp = std::unique_ptr<FILE, decltype(&std::fclose)>(std::fopen((path + ".mmd").c_str(), "w"), &std::fclose);