Hi, is it possible to pass a node output as a ApiD...
# questions
s
Hi, is it possible to pass a node output as a ApiDataset parameter? The use case is the following: 1) a node produces a list of ids 2) ApiDataset uses the list of ids as a parameter to call an API. 3) the next node gets this dataset that comes from ApiDataset
r
You could probably do that with hooks by dynamically injecting the IDs into the dataset parameters, but that would be quite hacky and not really ideal. A cleaner option would be to just make the API call inside the node itself that way you can pass the list of IDs directly as an input and keep things simple and explicit.