List User's Groups

List the groups the user is a member of with their role.

  query (
	$limit: Int
  ) {
	userGroups (
  	limit: $limit
	) {
  	role
  	group {
  	id
  	name
  	metadata
  	logo_url
  	visibility
  	}
	}
  }

Last updated

Was this helpful?