{"id":19961861,"url":"https://github.com/chuksjoshuaa/project-management-system","last_synced_at":"2026-04-09T18:37:02.898Z","repository":{"id":108267708,"uuid":"563371076","full_name":"ChuksJoshuaa/Project-Management-System","owner":"ChuksJoshuaa","description":"A project management system built with Graphql, The frontend was built with React.js and boostrap. Users can add project, update and delete a particular project","archived":false,"fork":false,"pushed_at":"2022-12-30T10:10:00.000Z","size":394,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-12T07:46:36.023Z","etag":null,"topics":["bootstrap","cors","graphql","mongodb","mongoose","node-js","reactjs"],"latest_commit_sha":null,"homepage":"https://system-mgmt.netlify.app/","language":"JavaScript","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/ChuksJoshuaa.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-08T13:29:05.000Z","updated_at":"2022-11-11T09:47:35.000Z","dependencies_parsed_at":"2023-05-03T12:32:41.352Z","dependency_job_id":null,"html_url":"https://github.com/ChuksJoshuaa/Project-Management-System","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChuksJoshuaa%2FProject-Management-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChuksJoshuaa%2FProject-Management-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChuksJoshuaa%2FProject-Management-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChuksJoshuaa%2FProject-Management-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChuksJoshuaa","download_url":"https://codeload.github.com/ChuksJoshuaa/Project-Management-System/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241396739,"owners_count":19956404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bootstrap","cors","graphql","mongodb","mongoose","node-js","reactjs"],"created_at":"2024-11-13T02:08:40.813Z","updated_at":"2026-04-09T18:36:57.871Z","avatar_url":"https://github.com/ChuksJoshuaa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GraphQL Project Management System\n\n## GraphQL Queries \u0026 Mutations\n\n### Get names of all clients\n\n```\n{\n  clients {\n    name\n  }\n}\n```\n\n### Get a single client name and email\n\n```\n{\n  client(id: 1) {\n    name\n    email\n  }\n}\n```\n\n### Get name and status of all projects\n\n```\n{\n  projects {\n    name\n    status\n  }\n}\n```\n\n.\n\n### Get a single project name, description along with the client name and email\n\n```\n{\n  project(id: 1) {\n    name\n    description,\n    client {\n      name\n      email\n    }\n  }\n}\n```\n\n### Create a new client and return all data\n\n```\nmutation {\n  addClient(name: \"Chukwudi Joshua\", email: \"chuksjoshuaa@gmail.com\", phone: \"000-000-000\") {\n    id\n    name\n    email\n    phone\n  }\n}\n```\n\n### Delete a client and return id\n\n```\nmutation {\n  deleteClient(id: 1) {\n    id\n  }\n}\n```\n\n### Create a new project and return name and description\n\n```\n\n  mutation {\n    addProject(name: \"Best Footballer\", description: \"Messi is the most complete player in the world and he has achieved a lot of individual awards;\", status: progress, clientId: \"636b67c1551f6c310008f0cb\"){\n      id\n      name\n      status\n      description\n      clientId {\n        id\n      }\n    }\n  }\n\n```\n\n### Update a project status and return name and status\n\n```\nmutation {\n  updateProject(status: \"completed\") {\n   name\n   status\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchuksjoshuaa%2Fproject-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchuksjoshuaa%2Fproject-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchuksjoshuaa%2Fproject-management-system/lists"}