Ratel delete node function query seems wrong

Yeah, so you have to add the Type to it. Types aren’t done automatically. Dgraph can’t assign a type for your node.

1 - Create your Type Get started with Dgraph - It can be done in Ratel via Schema panel.

2 - Add the Type predicate. You can use the query bellow.

you have to run this in the Mutation panel.

upsert {
  query {
    v as var(func: uid(0x15f91))
  }

  mutation {
    set {
      uid(v) <dgraph.type> "myType" .
    }
  }
}