Deleted nodes appearing in search when I include uid

Hey @Awoogamuffin I have news,

Soon Dgraph will change to a new type system, so this will be fixed with that.
For now you can try a “query hack” like below.

{
  va(func: has(bills)) @filter(has(bills)) 
    {
    uid
    expand(_all_)
  }
}

OR

{
  va(func: has(bills)) @filter(has(name)) 
    {
    uid
    expand(_all_)
  }
}

Cheers.

1 Like