Assuming you mean that the objects copied (the "first level" in the graph) are immutable, then doing a shallow copy is good practice.
Also, immutable objects can have clone methods returning themselves, so if an object containing them is "deep copied" it will really be such a shallow copy. System.String for example, implements ICloneable with:
public object Clone()
{
return this;
}
Personally, I'd recommend the following variant that reduces the need for casting when not called through the interface:
public class MyImmutableClass : ICloneable
{
public MyImmutableClass Clone()
{
return this;
}
ICloneable.Clone()
{
return this;
}
}