GraphQL API Documentation
Relation Queries
This section describes the available GraphQL API queries related to relation operations, their usage, required parameters, and example responses.
API Calls
Query Name | Description |
---|---|
getAllManagerProviders | Fetches All Manager Providers |
getAllManagerProvidersPaged | Fetches a paginated list of Manager Providers |
[POST]: getAllManagerProviders
Description
📌 Fetches All Manager Providers
Input
query getAllManagerProviders()
Headers
{
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
Query
query {
getAllManagerProviders {
id
identifier
lastTouch
lodRelation
manager
populatedBy
provider
}
}
Response
Headers
Status: 200 OK
Response Type: ManagerProvider
Field Name | Type | Description |
---|---|---|
id | ManagerProviderId | The combined ID of the Manager-Provider relation |
identifier | Identifier | The Identifier |
lastTouch | String | lastTouch |
lodRelation | String | The relation between Manager, Provider and Identifier |
manager | Manager | The Manager |
populatedBy | String | populatedBy |
provider | Provider | The Provider |
Response body:
Example not provided
[POST]: getAllManagerProvidersPaged
Description
📌 Fetches a paginated list of Manager Providers
Input
query getAllManagerProvidersPaged(page: Int, size: Int)
Headers
{
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
Query
query {
getAllManagerProvidersPaged(page: Int, size: Int) {
id
identifier
lastTouch
lodRelation
manager
populatedBy
provider
}
}
Response
Headers
Status: 200 OK
Response Type: ManagerProvider
Field Name | Type | Description |
---|---|---|
id | ManagerProviderId | The combined ID of the Manager-Provider relation |
identifier | Identifier | The Identifier |
lastTouch | String | lastTouch |
lodRelation | String | The relation between Manager, Provider and Identifier |
manager | Manager | The Manager |
populatedBy | String | populatedBy |
provider | Provider | The Provider |
Response body:
Example not provided