(ctx context.Context, arg AddGraphSaltParams)
| 52 | } |
| 53 | |
| 54 | func (q *Queries) AddGraphSalt(ctx context.Context, arg AddGraphSaltParams) error { |
| 55 | _, err := q.db.ExecContext(ctx, addGraphSalt, |
| 56 | arg.ID, |
| 57 | arg.GraphID, |
| 58 | arg.Value, |
| 59 | arg.ExpiresAt, |
| 60 | ) |
| 61 | return err |
| 62 | } |
| 63 | |
| 64 | const allFileMeta = `-- name: AllFileMeta :many |
| 65 | SELECT id, graph_id, file_id, blob_path, checksum, size, last_modified_at, last_modified_tx |
nothing calls this directly
no test coverage detected