Using ArcGIS Enterprise 10.9.1 Sharing API I am able to see some `null` type items in my portal

but when I try to get these items through ArcGIS API for Python like this
username = "PortalUserXXX"
item_type = 'null' # This represents null type
# Search for items
items = gis.content.search(query=f'owner:{username} AND type:"{item_type}"', max_items=1000)
# Print the retrieved items
for item in items:
print(f'Title: {item.title}, ID: {item.id}, Type: {item.type}')
I am not getting anything in return.
I even tried this
username = "PortalUserXXX"
item_type = None # This represents null type
and same result! I tried this
username = "PortalUserXXX"
item_type = '' # This represents null type
which is returning all items BUT not the Null one! Can you please let me know what I am doing wrong and what I am missing here?