skillbox/client/src/graphql/gql/mutations/addProject.gql

10 lines
183 B
GraphQL

#import "../fragments/projectParts.gql"
mutation AddProjectMutation($input: AddProjectInput!){
addProject(input: $input){
project {
...ProjectParts
}
errors
}
}