railwayapp 4.61.1

Interact with Railway via CLI
query WorkspaceTemplates($workspaceId: String!, $first: Int, $after: String) {
  workspaceTemplates(workspaceId: $workspaceId, first: $first, after: $after) {
    edges {
      node {
        id
        code
        name
        description
        image
        category
        readme
        demoProjectId
        status
        workspaceId
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}