Project
A project with its full details and related resources.
type Project {
id: ID!
name: String!
description: String
createdAt: DateTime!
updatedAt: DateTime!
deletable: Deletable!
cost: CostSummary!
environments(
sort: EnvironmentsSort
cursor: Cursor
): EnvironmentsPage
}
Fields
Project.id ● ID! non-null scalar
Project.name ● String! non-null scalar
Display name
Project.description ● String scalar
What this project is for
Project.createdAt ● DateTime! non-null scalar
When this project was created (UTC)
Project.updatedAt ● DateTime! non-null scalar
When this project was last modified (UTC)
Project.deletable ● Deletable! non-null object
Whether this project can be deleted and any constraints preventing deletion.
Project.cost ● CostSummary! non-null object
Cloud provider costs for this project.
Project.environments ● EnvironmentsPage object
The environments in this project, like staging or production.
Project.environments.sort ● EnvironmentsSort input
Project.environments.cursor ● Cursor input
Returned By
project query
Member Of
Environment object ● ProjectPayload object