Skip to contents

Removes one or more upstream flows from the dependency list of the target flow.

Usage

pl_remove_dependency(conn, flow, depends_on)

Arguments

conn

A connection object from pl_connect().

flow

Name of the flow to update.

depends_on

Character vector of upstream flow names to remove.

Value

Invisibly returns the updated flow record.

Examples

if (FALSE) { # \dontrun{
conn <- pl_connect()
pl_remove_dependency(conn, "ans_data_freshness", "another_upstream_flow")
} # }