For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Connected People

Returns list of Business to Consumer (B2C) Connections with information about the connection, the user and the company

The company GraphQL API is accessible at /company

query (
	$includedType: B2cConnectionType
	$excludedType: B2cConnectionType
	$limit: Int
  ) {
	b2cConnections (
  	includedType: $includedType
  	excludedType: $excludedType
  	limit: $limit
	) {
  	id
  	type
  	insertedAt
  	updatedAt
  	startedAt
  	company {
    	id
  	}
  	connectedUser {
    	id
  	}
	}
  }

Last updated