Performance enhancement to keep track of which classes have already been queried through GraphModel.__parsed__ = list[class]
When running .get_all_edges(cim.ClassName), it should check if cim.ClassName is in parsed. If not, all queries should be executed, then cim.ClassName should be appended to list of parsed classes
Performance enhancement to keep track of which classes have already been queried through
GraphModel.__parsed__ = list[class]
When running
.get_all_edges(cim.ClassName)
, it should check ifcim.ClassName
is in parsed. If not, all queries should be executed, thencim.ClassName
should be appended to list of parsed classes