Files
taskcafe/frontend/src/shared/graphql/createProject.graphqls
Jordan Knott 4277b7b2a8 feat: add personal projects
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).
2020-09-19 20:23:16 -05:00

11 lines
172 B
GraphQL

mutation createProject($teamID: UUID, $name: String!) {
createProject(input: {teamID: $teamID, name: $name}) {
id
name
team {
id
name
}
}
}