Class of edge_data in YAML. Internal use only.
| 22 | |
| 23 | |
| 24 | class MetaEdge(dt.BaseModel): |
| 25 | """Class of edge_data in YAML. Internal use only.""" |
| 26 | |
| 27 | file_name: str |
| 28 | etype: Optional[List[str]] = ["_V", "_E", "_V"] |
| 29 | graph_id_field: Optional[str] = "graph_id" |
| 30 | src_id_field: Optional[str] = "src_id" |
| 31 | dst_id_field: Optional[str] = "dst_id" |
| 32 | |
| 33 | |
| 34 | class MetaGraph(dt.BaseModel): |
no outgoing calls