joyent-portal/packages/my-joy-instances/src/graphql/create-snapshot.gql

7 lines
129 B
Plaintext
Raw Normal View History

2017-10-04 20:27:55 +03:00
mutation createInstanceSnapshot($id: ID!, $name: String) {
2017-10-11 19:59:59 +03:00
createMachineSnapshot(id: $id, name: $name) {
id
2017-10-11 19:59:59 +03:00
name
}
2017-10-04 20:27:55 +03:00
}