AD
Size: a a a
AD
RL
LV
LV
LV
LV
RL
LV
RL
LV
RL
LV
ZZ
ZZ
v
ZZ
ZZ
const listAuthors = `-- name: ListAuthorsByIDs :many
SELECT id, bio, birth_year FROM authors
WHERE id = ANY($1::int[])
`
func (q *Queries) ListAuthorsByIDs(ctx context.Context, ids []int) ([]Author, error) {
rows, err := q.db.QueryContext(ctx, listAuthors, pq.Array(ids))
ZZ