'Is there a way to GET lists of course work for ALL courses in one request (Method: courses.courseWork.list Google Classroom API)

Is there a way to GET lists of course work for ALL courses in one request (Method: courses.courseWork.list Google Classroom API). Right now, it works only by one single courseId per request Thank you

function execute() {
return gapi.client.classroom.courses.courseWork.list({
"courseId": "7777777777777",
"courseWorkStates": [
"PUBLISHED"
]
})


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source