| 164 | ` |
| 165 | |
| 166 | type CreateGraphParams struct { |
| 167 | ID string |
| 168 | Name string |
| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected