joyent-portal/packages/my-joy-instances/src/graphql/list-snapshots.gql

16 lines
201 B
GraphQL

query instance($name: String!) {
machines(name: $name) {
results {
id
name
snapshots {
id
name
state
created
updated
}
}
}
}