Hello! I'm attempting to do something more complex...
# ask-community
u
Hello! I'm attempting to do something more complex than the initial tutorials with
branching graphs
I have two ops:
Copy code
@op{out={'output_1' : Out(is_required=False)})
def get_parents_dataframe():
    df = pd.read_sql('...')
    data = df.groupby('parent')['id'].agg(list)
    for item in data.items():