Skip to content

Commit

Permalink
Setup CreateProject ect Resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Oct 5, 2023
1 parent 003ab75 commit b4d93a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/api/type-defs/inputs/CreateProjectInput.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default `
input CreateProjectInput {
name: String!
description: String!
timezone: String!
}
`;
2 changes: 2 additions & 0 deletions src/api/type-defs/root/Mutation.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export default `
stopBatch(input: StopBatchInput!): StandardPayload
redriveBatch(input: RedriveBatchInput!): StandardPayload
createProject(input: CreateProjectInput!): StandardPayload
createBatchError(input: CreateBatchErrorInput!): BatchError
createImageError(input: CreateImageErrorInput!): ImageError
clearImageErrors(input: ClearImageErrorsInput!): StandardPayload
Expand Down

0 comments on commit b4d93a9

Please sign in to comment.