GetPmsPortfolioDashboard
Returns the rendered widgets of a single PMS portfolio dashboard scoped to a vehicle
Signature
query {
GetPmsPortfolioDashboard(dashboardId: ..., vehicleId: ...)
}
Retourne : PmsPortfolioDashboard!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
dashboardId | ID! | ✓ | — | Identifier of the dashboard configuration to render |
vehicleId | ID! | ✓ | — | Vehicle identifier injected into the widget algorithm context |
startDate | Date | — | Start date filter (YYYY-MM-DD) | |
endDate | Date | — | End date filter (YYYY-MM-DD) |
Exemple
query {
GetPmsPortfolioDashboard(
dashboardId: $dashboardId
vehicleId: $vehicleId
) {
tiles {}
charts {}
dateFilters {}
htmls {}
dashboardId
}
}