| 191 | |
| 192 | |
| 193 | class VertexLabel(Label): |
| 194 | __slots__ = [] |
| 195 | |
| 196 | @property |
| 197 | def type_enum(self): |
| 198 | return graph_def_pb2.TypeEnumPb.VERTEX |
| 199 | |
| 200 | def add_primary_key(self, name, data_type, comment=""): |
| 201 | return self.add_property(name, data_type, True, comment) |
| 202 | |
| 203 | |
| 204 | class EdgeLabel(Label): |
no outgoing calls
no test coverage detected