I have a firestore db structure like so;

How can i query all documents under auctions collection that have a given cargoOwnerId?
I am using com.google.firebase:firebase-firestore:20.2.0 in my project.
I have looked through similar issues here on stack overflow but no to success.
I have also read the documentation by Google about doing this here but nothing seems to work when I run the code below
FirebaseFirestore.getInstance()
.collection("auctions")
.whereEqualTo("cargoOwnerId","ZkYu6H6ObiTrFSX5uqNb7lWU7KG3")
.get()
.addOnCompleteListener(task -> {
Log.d("Logging", "Size: " + task.getResult().size());
});
I expect to return a list of all the documents that contain ZkYu6H6ObiTrFSX5uqNb7lWU7KG3 as the cargoOwnerId but it returns nothing at all. The size is 0.
Am i missing something?