Extra UID returning

Hi. Im using node client and when I do the above mutation I got two UIDs in return. I would expect only one. Why I’m wrong? What I’m missing, please?

          {
                person: [
                    {
                        name: "Claudia",
                        phone: "3199674332"
                    }
                ]
            }

# I got blank-0 and blank-1 from this =/

Thanks!

Ok, I got it. I was obviously (now, at least) creating an empty vertice before “person” Claudia, that was an edge to her.

{
    #...empty veritce
    person: {
       #blahblah...
   }
}
# and thats how you end up with twho uids =]
1 Like