feat(graphql): add demarcheCloner mutation

This commit is contained in:
Paul Chavard 2022-11-25 13:24:17 +01:00
parent 3f2a91b855
commit b663939674
5 changed files with 120 additions and 0 deletions

View file

@ -801,5 +801,17 @@ class API::V2::StoredQuery
}
}
}
mutation demarcheCloner($input: DemarcheClonerInput!) {
demarcheCloner(input: $input) {
demarche {
id
number
}
errors {
message
}
}
}
GRAPHQL
end