{"id":27128418,"url":"https://github.com/akronae/kg-technical-test","last_synced_at":"2026-01-20T22:01:33.016Z","repository":{"id":45899344,"uuid":"511578861","full_name":"Akronae/kg-technical-test","owner":"Akronae","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-02T11:13:45.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-20T14:56:26.633Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Akronae.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-07T15:21:38.000Z","updated_at":"2023-11-17T17:21:18.000Z","dependencies_parsed_at":"2023-01-21T04:19:39.806Z","dependency_job_id":null,"html_url":"https://github.com/Akronae/kg-technical-test","commit_stats":null,"previous_names":["akronae/kg-technical-test"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Akronae/kg-technical-test","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akronae%2Fkg-technical-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akronae%2Fkg-technical-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akronae%2Fkg-technical-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akronae%2Fkg-technical-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Akronae","download_url":"https://codeload.github.com/Akronae/kg-technical-test/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akronae%2Fkg-technical-test/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28615542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T21:52:42.722Z","status":"ssl_error","status_checked_at":"2026-01-20T21:52:20.513Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-07T18:57:56.924Z","updated_at":"2026-01-20T22:01:33.001Z","avatar_url":"https://github.com/Akronae.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 👩‍💻 KG Technical Test\n\nHeya! Welcome to the tech test, don't panic and try to enjoy it.\nConsider it an opportunity to do things your own way. \n\n![qs](https://media1.giphy.com/media/8xgqLTTgWqHWU/giphy.gif)\n\n## 📦 What to deliver\n\nA link to your github (or any similar hub) repo, with a clear README.md file on how to install and run the project, feel free to also explain some technical choices you made.\n\n## 🔧 The tools you will be using\n- React Native\n- TypeScript\n- GraphQL\n- MongoDB\n- Docker\n- Any other tool or superset of these tools you think would help you have a cleaner code/architecture\n\n## 🎯 What you will be judged on\n\n- The project architecture\n- Clean code\n- Your understanding of the tasks\n- Your ingenuity and out-of-the-box thinking\n- Commits logic\n\n## ❌ What you will **NOT** be judged on\n\n- User interface \u0026 styles (*note that the way you **technicaly** apply styling could be judged, but the way it actually looks will not*)\n\n## 🤔 What to justify\n\n- Using external libraries\n\n## 💭 Context\n\nA real estate agency wants to develop a back-office application to view and manage its properties, the goal is to be able to view, update, and delete ads.\n\n**An ad is anything that is (or can be) rented out. (A flatsharing room, an entire castle, \u003cdel\u003eyour backyard\u003c/del\u003e)** (\u003c=\u003e rental unit)\n\nA property has **at least** the following fields:\n- Title\n- Address\n- Rooms\n- Surface\n- Pictures\n\nA Room has **at least** the following fields:\n- Title\n- Surface\n- Pictures\n\nSomething that is rented out (rental unit) has **at least** the following fields:\n- Tenant\n- Rent Price\n\nA tenant has **at least** the following fields:\n- First Name\n- Last Name\n- Email\n\n## 1️⃣ First task\n\n- Add an Ads page, where the user should be able to use the interface to add, delete, and update ads.\n\n- *Extra: The user is able to select an ad from the list and view its content on a seperate page.*\n\n## 2️⃣ Second task\n\nCongrats !! The agency has started to use your program, but an important information is missing, and it's whether the ad is rented by someone or not.\n\n- Create a Tenants page, where the tenants are listed with information about the ad they are renting out (no need to make them editable)\n- Add the feature to view and update who is renting out an ad on the Ads page\n\n## 3️⃣ Third task\n\n- On the Ads page add a filtering feature which allows to filter ads based on:\n  - Title\n  - Date Created\n  - Email of the tenant renting\n- Add a sorting feature which allows to sort ads based on:\n  - Rent Price\n  - Date Created\n\nHow are you doing with 10k+ properties in your database?\n\n## ✏ Author\n\nAlexandre Daubricourt \u003calexandre.daubricourt@koliving.fr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakronae%2Fkg-technical-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakronae%2Fkg-technical-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakronae%2Fkg-technical-test/lists"}