railwayapp 5.20.0

Interact with Railway via CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mutation SandboxCheckpointCreate(
  $environmentId: String!
  $sandboxId: String!
  $name: String!
) {
  sandboxCheckpointCreate(
    environmentId: $environmentId
    sandboxId: $sandboxId
    name: $name
  ) {
    id
    key
    createdAt
    environmentId
  }
}