https://github.com/gustedeveloper/laboratorio-rest-api
https://github.com/gustedeveloper/laboratorio-rest-api
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gustedeveloper/laboratorio-rest-api
- Owner: gustedeveloper
- Created: 2025-06-06T19:06:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-23T13:49:51.000Z (10 months ago)
- Last Synced: 2025-09-23T15:39:03.171Z (10 months ago)
- Language: TypeScript
- Size: 61.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rick & Morty Characters App
Rick & Morty characters app to explore different ways of consuming APIs.
**Practice Laboratory - Lemoncode Master Frontend Program**
## 📚 Exercises Completed
### Exercise 1: External REST API
**Objective:** Create an app that consumes the Rick & Morty REST API to display characters.
**What I learned:**
- Making external API calls with `fetch`
- Displaying a list of characters
- Navigating to character details
### Exercise 2: Local Server with Editing
**Objective:** Simulate writes using a local server with mock data.
**What I learned:**
- Implementing GET and PUT endpoints
- Adding custom fields (`bestSentence`)
- Allowing users to edit and save data
### Exercise 3: GraphQL (Optional)
**Objective:** Implement the same functionality but using GraphQL.
**What I learned:**
- Differences between REST and GraphQL
- Creating specific GraphQL queries
- Requesting only the data I need
- Handling variables in GraphQL