So I have an array of user ids. Is there a way in rails console to query all of these user\'s with the array
something like
ids = [1, 2, 3, 4] users
you can use User.where(id: ids)
User.where(id: ids)