railwayapp 4.27.0

Interact with Railway via CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mutation ProjectCreate($name: String, $description: String, $workspaceId: String) {
	projectCreate(
		input: { name: $name, description: $description, workspaceId: $workspaceId }
	) {
		name
		id
		environments {
			edges {
				node {
					id
					name
				}
			}
		}
	}
}