Tengo el siguiente error cuando intento acceder a mi parte web que he creado: TypeError no capturado (en promesa): no se pueden leer las propiedades de undefined (leyendo 'getById').
El código es el siguiente:
public static async getChannels(groupId: string): Promise<any[]> { var channels: any[] = []; channels = await graph.teams.getById(groupId).channels.get(); return channels; }¡Gracias por tu ayuda!