Help with this delete mutation: wiping entity from DB

Hey all,

I thought I could run these mutations to delete all edges, both inbound and outbound, from a UID:

mutation {
delete {
* * <0x24> .
<0x24> * * .
}}

but I’m gettinga “STAR_ALL”: invalid syntax error:

"errors": [
        {
            "code": "Error",
            "message": "strconv.ParseUint: parsing \"_STAR_ALL\": invalid syntax"
        }

I know there was a mention of this in a previous topic, but I’m having trouble finding it.

@tamethecomplex We don’t support deleting incoming edges since its expensive to store/find all incoming edges.

This makes sense, thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.