Skip to main content

GraphView

What it is

  • A thin subclass of naas_abi.ontologies.modules.NexusPlatformOntology.GraphView.
  • Intended as an action class placeholder where you add custom logic via actions().

Public API

  • class GraphView(_GraphView)
    • Inherits all behavior from the upstream _GraphView.
    • actions(self)
      • Placeholder method for implementing action logic.
      • Currently does nothing (pass).

Configuration/Dependencies

  • Depends on naas_abi.ontologies.modules.NexusPlatformOntology.GraphView (imported as _GraphView).
  • No additional configuration in this module.

Usage

from naas_abi.ontologies.classes.ontology_naas_ai.nexus.GraphView import GraphView

gv = GraphView()
gv.actions() # no-op in this implementation

Caveats

  • actions() is not implemented in this file; calling it has no effect unless you override/extend it.