No, it is not possible to add multiple reviewers at once using the Gerrit interface. You must add one by one or use REST, as in this example:
curl --request POST -d@- --header Content-Type:application/json https:
{
"reviewer": "USERNAME1",
"reviewer": "USERNAME2"
}
EOF
source
share