Setup ADT Explorer and Sample Floor & Room using this tutorial Digital Twin Tutorial
In addition, added the additional rooms and created the relationship using these commands
CreateDigitalTwin dtmi:example:Room;2 room01 RoomName string Room01 Temperature double 70 HumidityLevel double 30
CreateDigitalTwin dtmi:example:Room;2 room02 RoomName string Room02 Temperature double 70 HumidityLevel double 30
CreateRelationship floor0 contains room01 relationship01
CreateRelationship floor0 contains room02 relationship02
When I run the query "SELECT floor, room FROM DIGITALTWINS floor JOIN room RELATED floor.contains where floor.$dtId = 'floor0'
", I can see only the relation between floor0 and room0 and not with room01 and room02.
Any suggestions please.