Shipment status

hello i am getitng only three status for shipment “valid” “null” and “void” where as it should have more like trnasit, retunred, pre_transit etc. please see my query and suggest if anything wrong in it

query{
shipments{
request_id
complexity
data()
{
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
order_id
user_id
warehouse_id
completed
created_date
address {
name
address1
address2
city
state
country
zip
}

      line_items(first:10){
        edges{
          node{
            
             line_item
              {
                
                Max: updated_at
              }
            }
          
        }
      }
      shipping_labels {
        tracking_number
        carrier
        shipping_method
        cost
picked_up

needs_refund
refunded
delivered
status
dimensions{
weight
}

      }
   } 
  }
    }
  }
}

Hi @hlohani,
“valid” “null” and “void” seem correct. Null if there is no label, valid if the label is used, and void if it has been voided.