(edge *pb.DirectedEdge)
| 52 | } |
| 53 | |
| 54 | func isDeletePredicateEdge(edge *pb.DirectedEdge) bool { |
| 55 | return edge.Entity == 0 && isStarAll(edge.Value) |
| 56 | } |
| 57 | |
| 58 | // runMutation goes through all the edges and applies them. |
| 59 | func runMutation(ctx context.Context, edge *pb.DirectedEdge, txn *posting.Txn) error { |
no test coverage detected