I'd like to turn Async<seq> to AsyncSeq
While this works
asyncSeq {
for item in items -> item
}
yield! version does not:
asyncSeq {
yield! items
}
I need this to get all pages from the endpoint in one go. Reading a single page yields Async<seq<Result>> , I'd like the result to be presented as AsyncSeq