(ctx context.Context, arg CreateGraphParams)
| 169 | } |
| 170 | |
| 171 | func (q *Queries) CreateGraph(ctx context.Context, arg CreateGraphParams) (int64, error) { |
| 172 | row := q.db.QueryRowContext(ctx, createGraph, arg.ID, arg.Name) |
| 173 | var current_tx int64 |
| 174 | err := row.Scan(¤t_tx) |
| 175 | return current_tx, err |
| 176 | } |
| 177 | |
| 178 | const deleteGraph = `-- name: DeleteGraph :exec |
| 179 | DELETE FROM graphs |
nothing calls this directly
no test coverage detected