rest-API와 graphgl-API는 비동기식으로 처리가된다 이것을 해결하기 위해 async와 await를 사용하여 동기식으로 처리해준다
rest-API
graphgl-API
async
await
아래에 rest-API로 예시를 들어보았다
비동기식으로 처리했을 때 (async/await 사용 안함) 결과값 아직 값을 받아오기 전이라 Promise가 출력된다
async/await
Promise
동기식으로 처리했을 때(async/await 사용)
결과값 값을 받아오는 것을 확인할 수 있다