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

List B2B Connections

Call returns list of connected companies and the relationship type(s) (client, vendor, partner, other)

The company GraphQL API is accessible at /company

query (
	$includedType: B2bConnectionType
	$excludedType: B2bConnectionType
	$limit: Int
  ) {
	b2bConnections (
  	includedType: $includedType
  	excludedType: $excludedType
  	limit: $limit
	) {
  	id
  	type
  	createdAt
  	updatedAt
  	startedAt
  	company {
    	id
  	}
  	connectedCompany {
    	id
  	}
	}
  }

Code Examples

Last updated