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

List C2C Connections

Returns list of C2C connections with information about the connection, and the users.

query (
	$includedType: C2cConnectionType
	$excludedType: C2cConnectionType
	$limit: Int
  ) {
	c2cConnections (
  	includedType: $includedType
  	excludedType: $excludedType
  	limit: $limit
	) {
  	id
  	type
  	insertedAt
  	updatedAt
  	startedAt
  	user {
    	id
  	}
  	connectedUser {
    	id
  	}
	}
  }

Last updated