[GraphQL] Add archiver mutation

This commit is contained in:
Paul Chavard 2020-08-19 10:42:42 +02:00 committed by Keirua (Rebase PR Action)
parent a911a71db9
commit 061a743759
4 changed files with 105 additions and 0 deletions

View file

@ -457,6 +457,38 @@ type DossierAccepterPayload {
errors: [ValidationError!]
}
"""
Autogenerated input type of DossierArchiver
"""
input DossierArchiverInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
Dossier ID
"""
dossierId: ID!
"""
Instructeur qui prend la décision sur le dossier.
"""
instructeurId: ID!
}
"""
Autogenerated return type of DossierArchiver
"""
type DossierArchiverPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
dossier: Dossier
errors: [ValidationError!]
}
"""
Autogenerated input type of DossierChangerGroupeInstructeur
"""
@ -925,6 +957,11 @@ type Mutation {
"""
dossierAccepter(input: DossierAccepterInput!): DossierAccepterPayload
"""
Archiver le dossier.
"""
dossierArchiver(input: DossierArchiverInput!): DossierArchiverPayload
"""
Changer le grope instructeur du dossier.
"""