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

20 lines
283 B
GraphQL

query instances($offset: Int, $limit: Int) {
machines(offset: $offset, limit: $limit) {
total
offset
limit
results {
id
name
state
primary_ip
firewall_enabled
created
updated
brand
memory
disk
}
}
}