Class of node_data in YAML. Internal use only.
| 13 | |
| 14 | |
| 15 | class MetaNode(dt.BaseModel): |
| 16 | """Class of node_data in YAML. Internal use only.""" |
| 17 | |
| 18 | file_name: str |
| 19 | ntype: Optional[str] = "_V" |
| 20 | graph_id_field: Optional[str] = "graph_id" |
| 21 | node_id_field: Optional[str] = "node_id" |
| 22 | |
| 23 | |
| 24 | class MetaEdge(dt.BaseModel): |
no outgoing calls