Action Parameters

Hi,

I wanted to know if it is possible to get an action’s parameter of a process with GraphQL. Currently I can only retrieve the action’s application default parameter with this query, but not the custom added one (through editing an action)

{
  process(name: "ProcessName", version: 1) {
    activities {
      items {
        application {
          parameters {
            items {
              name
            }
          }
        }
      }
    }
  }
}

, Thank you