(ctx context.Context, id string)
| 192 | ` |
| 193 | |
| 194 | func (q *Queries) Graph(ctx context.Context, id string) (Graph, error) { |
| 195 | row := q.db.QueryRowContext(ctx, graph, id) |
| 196 | var i Graph |
| 197 | err := row.Scan(&i.ID, &i.Name, &i.CurrentTx) |
| 198 | return i, err |
| 199 | } |
| 200 | |
| 201 | const graphEncryptKeys = `-- name: GraphEncryptKeys :many |
| 202 | SELECT id, graph_id, encrypted_private_key, public_key |
nothing calls this directly
no test coverage detected