You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Given a list of string IDs of backends within the federation, returns those backends' full details as FederationBackend objects
421
421
*
422
-
* @param {Array<string>} backendIds The IDs of backends within the federation
423
-
* @returns {Array<FederationBackend>} An array in the same order as the input, containing for each position either the full details of the backend, or `undefined` if no backend with the given ID exists
422
+
* @param {Array<string>} backendIds - The IDs of backends within the federation
423
+
* @returns {Array<FederationBackend>} An array in the same order as the input, containing for each position either the full details of the backend, or `null` if no backend with the given ID exists
* Given a list of string IDs of backends within the federation, returns those backends' full details as FederationBackend objects
225
225
*
226
-
* @param {Array<string>} backendIds The IDs of backends within the federation
227
-
* @returns {Array<FederationBackend | undefined>} An array in the same order as the input, containing for each position either the full details of the backend, or `undefined` if no backend with the given ID exists
226
+
* @param {Array<string>} backendIds - The IDs of backends within the federation
227
+
* @returns {Array<FederationBackend | null>} An array in the same order as the input, containing for each position either the full details of the backend, or `null` if no backend with the given ID exists
228
228
*/
229
-
getFederationBackendsByIds(backendIds){
229
+
getFederationBackends(backendIds){
230
230
// Let 'single case' function do the work, but pass `this` so that `this.data.federation` can be accessed in the callback context
0 commit comments