summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/notes/create/note.rb
blob: 3c571a4538fe456e4ef28b8f00880b21a3fb0047 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Mutations
  module Notes
    module Create
      class Note < Base
        graphql_name 'CreateNote'
      end
    end
  end
end