Looping over Array of SSH Commands

I have a list of array commands to run over SSH. I want to know how I can run them in parallel or sequentially. The list has a variable (n) number of commands and I want to run all of them on the Same SSH Node.

[
  {
    "submittedAt": "2025-07-03T14:06:31.192-04:00",
    "formMode": "test",
    "cmdline": [
      "docker run --rm container get ",
      "docker run --rm container post",
      "docker run --rm conteiner ovh"
    ]
  }
]

Update I solved it using Split Out and Connecting the output to SSH Command