Skip to content

HAS_RESTOREPOINT

Represents the relationship between virtual machines and their restore points.

Usage

This relationship connects virtual machines to their restore point collections:

  • VirtualMachineHAS_RESTOREPOINTRestorePointCollection - Virtual machines to their restore points

Properties

No additional properties on the relationship.

Examples

// Find all virtual machines with restore points
MATCH (vm:VirtualMachine)-[:HAS_RESTOREPOINT]->(rp:RestorePointCollection)
RETURN vm.name, rp.name, rp.restorePointCollectionSourceId