(ctx context.Context, id string)
| 181 | ` |
| 182 | |
| 183 | func (q *Queries) DeleteGraph(ctx context.Context, id string) error { |
| 184 | _, err := q.db.ExecContext(ctx, deleteGraph, id) |
| 185 | return err |
| 186 | } |
| 187 | |
| 188 | const graph = `-- name: Graph :one |
| 189 | SELECT id, name, current_tx |
nothing calls this directly
no test coverage detected