- [ ] REST : GET /users/{user_id}/events - [ ] JSON Format : Refer below... - [ ] GraphQL Call - [ ] Test for GET and GraphQL ### JSON Format for the call ```json { data: [ { "id": 0, "name": "string", "description": "string", "starts_on": "2021-07-11T05:57:01Z", "place": "string", "city_id": "string", "event_type_id": 0, "event_type": "string", "created_by_user_id": "2021-07-11T05:57:01Z", "location": "string", "created_on": "2021-07-11T05:57:01Z", "present": 0, "late": 0, "rsvp": "no_data", "reason": "string" } ] } ```