OBJECT
Mutation
link GraphQL Schema definition
1 type Mutation { 2 3 String : 4 5 # Create user. 6 # 7 # Arguments 8 # user: User data. 9 CreateUserInput!): User ( : 10 11 # Update existing user. 12 # 13 # Arguments 14 # id: Id of user. 15 # user: User data to update. 16 ID!, : UpdateUserInput!): User ( : 17 18 # Update multiple existing users. 19 # 20 # Arguments 21 # filter: Filter criteria for updated users. 22 # data: Data to update. 23 UserFilterInput!, : UpdateUserInput!): [User]! ( : 24 25 # Delete user. 26 # 27 # Arguments 28 # id: Id of user. 29 ID!): Boolean! ( : 30 31 # Send invitation to a user. 32 # 33 # Arguments 34 # id: Id of user. 35 ID!): User! ( : 36 37 # Activate inactive user. 38 # 39 # Arguments 40 # id: Id of user. 41 ID!): User! ( : 42 43 # Deactivate active user. 44 # 45 # Arguments 46 # id: Id of user. 47 ID!): User! ( : 48 49 # Create project. 50 # 51 # Arguments 52 # project: Project data. 53 CreateProjectInput!): Project! ( : 54 55 # Update project. 56 # 57 # Arguments 58 # id: Project's id. 59 # project: Data to update. 60 ID!, : UpdateProjectInput!): Project! ( : 61 62 # Delete project. 63 # 64 # Arguments 65 # id: Project's id. 66 ID!): Boolean! ( : 67 68 # Create journey. 69 # 70 # Arguments 71 # journeyTypeId: Journey type id. 72 # assigneeId: Assignee user id. 73 # journeyTemplateId: Journey template id. 74 # journey: Journey data. 75 ( 76 ID!, : 77 ID!, : 78 ID, : 79 CreateJourneyInput : 80 ): Journey 81 82 # Update journey. 83 # 84 # Arguments 85 # id: Journey id. 86 # journey: Journey data to update. 87 ID!, : UpdateJourneyInput): Journey ( : 88 89 # Delete journey. 90 # 91 # Arguments 92 # id: Journey id. 93 ID!): Boolean! ( : 94 95 # Set steps for a journey. 96 # 97 # Arguments 98 # id: Journey id. 99 # steps: Journey steps data. 100 ID!, : [SetJourneyStepInput]): Journey ( : 101 102 # Create timesheet entry. 103 # 104 # Arguments 105 # userId: User's id. 106 # date: Date. 107 # timesheetEntry: Timesheet entry data. 108 ( 109 ID, : 110 Date!, : 111 CreateTimesheetEntryInput! : 112 ): Timesheet! 113 114 # Update timesheet entry 115 # 116 # Arguments 117 # id: Timesheet entry id. 118 # timesheetEntry: Data to update. 119 ( 120 ID, : 121 UpdateTimesheetEntryInput! : 122 ): Timesheet! 123 124 # Delete timesheet entry. 125 # 126 # Arguments 127 # id: Timesheet entry id. 128 ID!): Boolean! ( : 129 130 }
link Required by
This element is not required by anyone