12 lines
184 B
GraphQL
12 lines
184 B
GraphQL
mutation createProject($teamID: UUID, $name: String!) {
|
|
createProject(input: {teamID: $teamID, name: $name}) {
|
|
id
|
|
shortId
|
|
name
|
|
team {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|