skillbox/client/src/graphql/gql/mutations/createSnapshot.gql

12 lines
178 B
GraphQL

mutation CreateSnapshot($input: CreateSnapshotInput!) {
createSnapshot(input: $input) {
snapshot {
id
title
created
creator
}
success
}
}