What license (if any) do you have?
On assumption you are using basic (free) license, and you have 7.x created indices with data you want to keep + your intended final destination is 9.x --> this means you will need to reindex the created-in-7.x indices, at some point.
It's best to do this while running 8.x, e.g 8.19.11. That likely what upgrade assistant would have told you, had you checked.
Indeed, this is the most important question now.
Useful would also be output of a GET on _cluster/stats, specifically the indices.versions section - if you can just pipe the output to jq -Src '.indices.versions[]' and paste reply.
My (test) 9.x cluster shows
{"index_count":31,"primary_shard_count":31,"total_primary_bytes":716694773,"version":"8.11.0-8.11.4"}
{"index_count":30,"primary_shard_count":33,"total_primary_bytes":345643664,"version":"8.17.0-8.17.10"}
{"index_count":6,"primary_shard_count":6,"total_primary_bytes":13972,"version":"8.18.0-8.18.8"}
{"index_count":23,"primary_shard_count":23,"total_primary_bytes":14916487,"version":"9.0.0-9.0.8"}
{"index_count":9,"primary_shard_count":9,"total_primary_bytes":58633,"version":"9.1.0-9.1.8"}
{"index_count":33,"primary_shard_count":33,"total_primary_bytes":980824279,"version":"9.2.0-9.2.1"}
{"index_count":21,"primary_shard_count":21,"total_primary_bytes":2624932131,"version":"9.3.0"}
to give you an idea of what to expect. Note the version field is always 8.something or 9.something in my case.
Did you create any pre-upgradre snapshots?