http://localhost:8080/graphql
docker compose up --build
{
clients{
id
name
email
phone
}
}
{
projects{
title
description
status
client{
name
email
phone
}
}
}
{
client(id: "65bbbc22ece69a3859ecfaea"){
name
phone
email
}
}
{
project(id: "65bbbc22ece69a3859ecfaea"){
title
description
status
client{
name
phone
email
}
}
}
mutation {
addClient(name: "Client Name", email: "client@email.com", phone: "000-000-000") {
}
}
mutation{
addProject(title: "Project Title" , status: new || progress || completed , description: "Project-Description" , clientId: "65bbe2a6f052994894799c1e") {
}
}
mutation {
deleteClient(id: "65bbbc22ece69a3859ecfaea") {
}
}
mutation{
deleteClinet(id :"65bbbc22ece69a3859ecfaea") {
}
}
