In `Einsum.jl` ```julia @einsum n[i,j,k] = hg[i,m]*hg[j,m]*hg[k,m] ``` defines a star shaped contraction, which will produce a rank 3 tensor. However, `@tensor` in `TensorOperations.jl` will raise an error. How can I define such kind of contraction correctly?