-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
The current outputs service only provides an api for fetching each outputs individually. During initial loads for a notebook, for cells that have more than one outputs, this causes multiple fetch calls increasing network traffic and potentially delaying hydrating the outputs for the notebook. Outputs service should provide a new api to return all outputs for the cell in a single request.
Expected request url
/api/outputs/{file_id}/{cell_id}Expected response
[
{
"output_type": "stream",
"text": "Hello World 1"
},
{
"output_type": "stream",
"text": "Hello World 2"
}
]Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request