Created
July 22, 2019 16:15
-
-
Save drewandre/782a2020aa89ab9b3556262c984d873c to your computer and use it in GitHub Desktop.
SendBird user list query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const sbCreateUserListQuery = userIdsArray => { | |
const sb = SendBird.getInstance() | |
let applicationUserListQuery = sb.createApplicationUserListQuery() | |
applicationUserListQuery.limit = 100 | |
applicationUserListQuery.userIdsFilter = userIdsArray | |
return applicationUserListQuery | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment