Skip to content

Add ability to change task title and description#5

Open
MaratKarimov21 wants to merge 4 commits into
masterfrom
add-ability-to-change-task-data
Open

Add ability to change task title and description#5
MaratKarimov21 wants to merge 4 commits into
masterfrom
add-ability-to-change-task-data

Conversation

@MaratKarimov21

Copy link
Copy Markdown
Owner

Summary

mutation to update task

How it works

Screenshot 2021-12-20 at 18 54 44

Test plan

List of steps to manually test introduced functionality:

  • Open GraphiQL App
  • Make request using schema:
  mutation { updateTask(input: {
  taskId: 1
  title: "updated"
  description: "updated"
  
}){
  task{
    title
    description
  }
}
}
  • ...

Review notes

While reviewing pull-request (especially when it's your pull-request),
please make sure that:

  • you understand what problem is solved by PR and how is it solved
  • new tests are in place, no redundant tests
  • DB schema changes reflect new migrations
  • newly introduced DB fields have indexes and constraints
  • there are no missed files (migrations, view templates)
  • required ENV variables added and described in .env.example and added to Heroku
  • associated Heroku review app works correctly with introduced changes

Deploy notes

Notes regarding deployment the contained body of work.
These should note any db migrations, ENV variables, services, scripts, etc.

References

@MaratKarimov21 MaratKarimov21 self-assigned this Dec 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant