получение значения запроса внутри карты при использовании прямого доступа к кешу - PullRequest
0 голосов
/ 27 апреля 2018

Как я могу получить значение, возвращаемое из запроса, если оно у меня есть в следующей форме:

await weekDates.map(datee =>
   this.props.client.query({
     query:queryFetchAppEventsByDate,
     name:'fetchAppEvents',
     variables:{
       incubatorId: this.currentUser.incubator._id,
       userId: this.props.getCurrentUser.currentUser._id,
       date:datee
     }
   })

  );

1 Ответ

0 голосов
/ 27 апреля 2018

Если у вас есть массив обещаний, вы должны использовать Promise.all для получения результатов или выполнить цикл for и использовать await.

Следующее должно работать

Promise.all(
  weekDates.map(date =>
    this.props.client.query({//assuming query returns a promise
      query: queryFetchAppEventsByDate,
      name: 'fetchAppEvents',
      variables: {
        incubatorId: this.currentUser.incubator._id,
        userId: this.props.getCurrentUser.currentUser._id,
        date: date
      }
    })
  )
).then(
  results=>console.log("results:",results)
).catch(
  error=console.log("something went wrong:",error)
);
...