#Access queryTree of Container

1 messages · Page 1 of 1 (latest)

subtle jackal
#

We updated the Dagger SDK To 0.15.3 (from 0.13.4) and our pipelines kinda broke.

We have this snippet in the code:

const exec = resolveLatestExec(this.source.queryTree)

Where source is of type "Container", we have this workaround:

const exec = resolveLatestExec(this.source._ctx._queryTree)

But what would be the "correct" solution?