CreateProjectInput
Input for creating a new project.
input CreateProjectInput {
id: String!
name: String!
description: String
}
Fields
CreateProjectInput.id ● String! non-null scalar
Unique identifier for the project, used in URLs and API calls. Must be 1-20 lowercase alphanumeric characters or hyphens. Choose carefully - this cannot be changed after creation.
CreateProjectInput.name ● String! non-null scalar
Display name shown in the UI
CreateProjectInput.description ● String scalar
What this project is for
Member Of
createProject mutation