(scheduleId: string)
| 47 | * @returns The retrieved schedule |
| 48 | */ |
| 49 | export function retrieve(scheduleId: string): ApiPromise<ScheduleObject> { |
| 50 | const apiClient = apiClientManager.client; |
| 51 | |
| 52 | if (!apiClient) { |
| 53 | throw apiClientMissingError(); |
| 54 | } |
| 55 | |
| 56 | return apiClient.retrieveSchedule(scheduleId); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Updates a schedule |
nothing calls this directly
no test coverage detected
searching dependent graphs…