railwayapp 4.24.0

Interact with Railway via CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mutation FunctionUpdate(
  $environmentId: String!
  $serviceId: String!
  $startCommand: String
  $cronSchedule: String
  $sleepApplication: Boolean
) {
  serviceInstanceUpdate(
    environmentId: $environmentId
    serviceId: $serviceId
    input: {
      cronSchedule: $cronSchedule
      sleepApplication: $sleepApplication
      startCommand: $startCommand
    }
  )
}