Make UI refreshing without invalidate all the cache

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-02-19 09:31:17 +01:00
parent 52db2d5f63
commit e2ddbf9fae
6 changed files with 287 additions and 119 deletions

View File

@@ -317,7 +317,7 @@ type Mutation {
createVendor(input: CreateVendorInput!): Vendor!
updateVendor(input: UpdateVendorInput!): Vendor!
deleteVendor(input: DeleteVendorInput!): Void!
createPeople(input: CreatePeopleInput!): People!
createPeople(input: CreatePeopleInput!): CreatePeoplePayload!
updatePeople(input: UpdatePeopleInput!): People!
deletePeople(input: DeletePeopleInput!): Void!
}
@@ -378,3 +378,7 @@ input UpdateVendorInput {
termsOfServiceUrl: String
privacyPolicyUrl: String
}
type CreatePeoplePayload {
peopleEdge: PeopleEdge!
}