railwayapp 4.7.3

Interact with Railway via CLI
1
2
3
4
5
6
7
mutation FunctionUpdate($environmentId: String!, $serviceId: String!, $startCommand: String, $cronSchedule: String, $sleepApplication: Boolean) {
  serviceInstanceUpdate(
    environmentId: $environmentId
    serviceId: $serviceId
    input: {cronSchedule: $cronSchedule, sleepApplication: $sleepApplication, startCommand: $startCommand}
  )
}