Breaking change: Bug fix for teams query

We recently fixed unexpected API behavior that returned all users after running a teams query with an empty array for the ids argument. Now, if you send an empty array, it will return no users.

query {
  teams (ids:[]) {
    id
  }
}