getUserConnectionsNetwork
query.
This query returns the list of user connections (user contexts associated with accounts who have accepted the invitation
from the current API user or whose invitation has been accepted by the current API user). Results returned with pagination
and sorted by the name (ascending by default, the order can be reversed).
The same pagination approach as in other queries is used (for example, getCatalogData).
The following arguments can be used in the query:
Argument | Type | Description | Default |
---|---|---|---|
after | Cursor | Returns results that come after the specified cursor. Should be used together with first parameter. Cannot be used if before is set. | — |
before | Cursor | Returns results that come before the specified cursor. Should be used together with last parameter. Cannot be used if after is set. | — |
first | Integer | Returns up to the first N elements from the list. Required if after parameter is set. Cannot be used together with last . | — |
last | Integer | Returns up to the first N elements from the list. Required if before parameter is set. Cannot be used together with first . | — |
reverse | Boolean | Allows to change the order of the sorting to DESC . | FALSE |
name | String | Provides the possibility to filter by the user context name. Note: it makes sense only if the real user name is sent to Opigno API during the user context synchronization. | — |