Name | Type | Description |
---|
voiId | ObjectId | The unique Windward assigned ID of the VOI to which the vessels are added. |
imos | [String!]! | The vessels International Maritime Organization ID of the vessels to remove from the list. |
Name | Description |
---|
VOI | The Vessel of Interest list name and ID from which the vessels are removed. |
Name | Type | Description |
---|
id | ObjectId | The unique Windward assigned ID of the VOI from which the vessels are removed. |
name | String | The name of the VOI from which the vessels are removed. |
mutation RemoveVesselsFromVOIByIMOs($voiId: ObjectId!, $imos: [String!]!) {
removeVesselsFromVOIByIMOs(voiId: $voiId, imos: $imos) {
id
name
}
}
{
"voiId": "63a84e070f405d00118234fd",
"imos": "9515539"
}
{
"data": {
"removeVesselsFromVOIByIMOs": {
"id": "63a84e070f405d00118234fd",
"name": "New-VOI"
}
}
}