https://kedro.org/ logo
#questions
Title
# questions
a

Aayush

09/28/2023, 2:19 AM
A very basic question but i am trying to execute a node that is part of pipeline. But node takes boolean input from previous node. How can i pass that boolean pipeline input when executing only that node from terminal.
j

Juan Luis

09/28/2023, 4:31 AM
hi @Aayush , you mean doing
kedro run
from the terminal but only for one node? is the boolean input declared as a dataset?
n

Nok Lam Chan

09/28/2023, 10:59 AM
Copy code
output = session.run()
The caveat here is that Kedro only return so called “free output”, which mean the leaves datasets which have no downstream dependencies and is not defined in
catalog.yml
output
is a dictionary and you can access the bool via
output[<dataset_name>]
a

Aayush

09/29/2023, 10:53 AM
yes kedro run only node.. i have not defined the boolean input in catalog