LearnersGuild/echo

View on GitHub
src/common/actions/queries/saveChapter.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function saveChapter({id, name, channelName, inviteCodes, timezone}) {
  return {
    variables: {chapter: {id, name, channelName, inviteCodes, timezone}},
    query: `
      mutation ($chapter: InputChapter!) {
        saveChapter(chapter: $chapter) {
          id
          name
          channelName
          timezone
          inviteCodes
        }
      }
    `,
  }
}