2020-07-28 18:16:03 +02:00
|
|
|
|
module Mutations
|
|
|
|
|
class DossierModifierAnnotationDate < Mutations::DossierModifierAnnotation
|
|
|
|
|
description "Modifier l’annotation au format date."
|
|
|
|
|
|
|
|
|
|
argument :value, GraphQL::Types::ISO8601Date, required: true
|
|
|
|
|
|
|
|
|
|
def resolve(dossier:, annotation_id:, instructeur:, value:)
|
2022-12-07 13:21:55 +01:00
|
|
|
|
resolve_with_type(dossier:, annotation_id:, instructeur:, value:)
|
2020-07-28 18:16:03 +02:00
|
|
|
|
end
|
2022-07-21 14:54:14 +02:00
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def input_type
|
|
|
|
|
:date
|
|
|
|
|
end
|
2020-07-28 18:16:03 +02:00
|
|
|
|
end
|
|
|
|
|
end
|