personal projects are projects that have no team. they can only seen by the project members (one of which is whoever first creates the project).
11 lines
172 B
GraphQL
11 lines
172 B
GraphQL
mutation createProject($teamID: UUID, $name: String!) {
|
|
createProject(input: {teamID: $teamID, name: $name}) {
|
|
id
|
|
name
|
|
team {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|