Add delete people

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-02-12 16:18:41 -08:00
parent 5b5321fac3
commit 29258e65ff
8 changed files with 304 additions and 2 deletions

View File

@@ -290,6 +290,7 @@ type Query {
type Mutation {
createVendor(input: CreateVendorInput!): Vendor!
deleteVendor(input: DeleteVendorInput!): Void!
deletePeople(input: DeletePeopleInput!): Void!
}
input CreateVendorInput {
@@ -300,3 +301,7 @@ input CreateVendorInput {
input DeleteVendorInput {
vendorId: ID!
}
input DeletePeopleInput {
peopleId: ID!
}