Skip to content

Commit

Permalink
fix: Web API (20231121)
Browse files Browse the repository at this point in the history
- 의도하지 않은 들여쓰기 부분이 있어서 수정
  • Loading branch information
linglong67 committed Feb 18, 2024
1 parent f954034 commit a7e6cb7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions _posts/2023-11-21-web-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ REST API의 주요 특징은 다음과 같습니다.
- 즉, 한 번의 요청으로 필요한 데이터를 모두 받아오지 못해 여러 번의 요청을 수행하는 것을 의미하며, 네트워크의 지연이 발생할 수 있고 사용자는 느린 로딩 속도로 인해 불편함을 겪을 수 있음
3. 다양한 엔드포인트
- REST API는 여러 엔드포인트가 존재하며, 각자의 역할을 하고 있으므로 클라이언트는 다양한 엔드포인트를 요청해야 함

```json
{
"books": [
Expand Down Expand Up @@ -116,6 +117,7 @@ GraphQL API의 주요 특징은 다음과 같습니다.
3. **실시간 데이터 업데이트**
- 실시간 데이터 업데이트를 지원
- 일반적으로 Subscription이라 불리는 메커니즘을 통해 이루어짐

```text
query {
user(id: 123) {
Expand Down

0 comments on commit a7e6cb7

Please sign in to comment.