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

Was this helpful?