bobbai00 commented on code in PR #4020:
URL: https://github.com/apache/texera/pull/4020#discussion_r2504961999


##########
frontend/src/app/workspace/service/workflow-graph/model/workflow-action.service.ts:
##########
@@ -919,4 +919,56 @@ export class WorkflowActionService {
   public getHighlightingEnabled() {
     return this.highlightingEnabled;
   }
+
+  /**
+   * Find all operators and links on any upstream path leading to the given 
destination operator.
+   * Uses BFS to traverse backwards from the destination to find all 
contributing operators.
+   * @param destinationOperatorId The operator ID to find upstream paths to
+   * @returns Object containing arrays of operator IDs and link IDs on 
upstream paths
+   */
+  public findUpstreamPath(destinationOperatorId: string): { operators: 
string[]; links: string[] } {

Review Comment:
   removed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to