fix(graphql): handle annotations inside blocks
This commit is contained in:
parent
e22ba34394
commit
3e40b6d7bc
13 changed files with 303 additions and 39 deletions
|
@ -1026,6 +1026,44 @@ type DossierLinkChamp implements Champ {
|
|||
stringValue: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of DossierModifierAnnotationAjouterLigne
|
||||
"""
|
||||
input DossierModifierAnnotationAjouterLigneInput {
|
||||
"""
|
||||
Annotation ID
|
||||
"""
|
||||
annotationId: ID!
|
||||
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
Dossier ID
|
||||
"""
|
||||
dossierId: ID!
|
||||
|
||||
"""
|
||||
Instructeur qui demande la modification.
|
||||
"""
|
||||
instructeurId: ID!
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of DossierModifierAnnotationAjouterLigne
|
||||
"""
|
||||
type DossierModifierAnnotationAjouterLignePayload {
|
||||
annotation: RepetitionChamp
|
||||
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
errors: [ValidationError!]
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of DossierModifierAnnotationCheckbox
|
||||
"""
|
||||
|
@ -1664,6 +1702,12 @@ type Mutation {
|
|||
"""
|
||||
input: DossierEnvoyerMessageInput!
|
||||
): DossierEnvoyerMessagePayload
|
||||
dossierModifierAnnotationAjouterLigne(
|
||||
"""
|
||||
Parameters for DossierModifierAnnotationAjouterLigne
|
||||
"""
|
||||
input: DossierModifierAnnotationAjouterLigneInput!
|
||||
): DossierModifierAnnotationAjouterLignePayload
|
||||
|
||||
"""
|
||||
Modifier l’annotation au format oui/non.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue