How to change property of an object in a collection?

System Information
  • Strapi Version: v4.10.7
  • Operating System: Linux
  • Database:
  • Node Version: 20.5.1
  • NPM Version: 9.8.1
  • Yarn Version:

Hello, this is a very noobie question but I cannot find documentation that answers this question specifically.
I have a collection with many objects that look like this

"name": "Phusaguaao-2",
          "class": "Gas3",
          "naturalResources": [
            "oil",
            "ore"
          ],
          "buildings": [],
          "resourceStorage": [],
          "production": [],
          "orbit": [],
          "hangar": [],
          "ownership": "unowned"

I want to be able to change the “ownership” property but I am stuck. I have created a single but I don’t see any way to connect it to the collection.
I’ve done this before with webhooks in node.js, but I am unsure how to start here.
Please just help me get started and I can figure it out from there.
I thank you in advance.