type Query {
readOnlyVesselProfileLink(vesselId: ObjectId, imo: String, startDate: DateTime, endDate: DateTime, sections: [VesselProfileSectionName!]): ReadOnlyVesselProfileLinkResponse
}
Name | Type | Description |
---|
vesselId | ObjectId | The unique Windward assigned ID of the vessel whose profile is to be displayed. |
imo | String | The International Maritime Organization ID of the vessel whose profile is to be displayed. |
startDate | DateTime | The starting date of the time range within which profile data is captured. |
endDate | DateTime | The end date of the time range within which profile data is captured. |
endDate | [VesselProfileSectionName!] | The name of the vessel profile section. |
query ReadOnlyVesselProfileLink($imo: String) {
readOnlyVesselProfileLink(imo: $imo) {
link
}
}
{
"imo": "9146558",
"startDate": "2022-06-01T06:00:00.000Z",
"endDate": "2022-12-20T06:00:00.000Z"
}
{
"imo": "9146558",
"startDate": "2022-06-01T06:00:00.000Z",
"endDate": "2022-12-20T06:00:00.000Z"
}