debian-mirror-gitlab/app/assets/javascripts/design_management/graphql/mutations/createNote.mutation.graphql

11 lines
184 B
GraphQL
Raw Normal View History

2020-05-24 23:13:21 +05:30
#import "../fragments/designNote.fragment.graphql"
mutation createNote($input: CreateNoteInput!) {
createNote(input: $input) {
note {
...DesignNote
}
errors
}
}