You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
353 B

CREATE (r1:Rectangle {id: 1, length: 10, width: 7.5, description: '小长方形'})
CREATE (big:Rectangle {id: 2, length: 30, width: 17.5, perimeter: 95, description: '由7个小长方形拼接而成的大长方形'})
CREATE (r1)-[:PART_OF {quantity: 3, orientation: '横向'}]->(big)
CREATE (r1)-[:PART_OF {quantity: 4, orientation: '纵向'}]->(big)