summaryrefslogtreecommitdiff
path: root/lib/types/query.rb
blob: 253f5d7f5225bd1810c903a5d565bab6b4e4dbec (plain)
1
2
3
4
5
6
7
8
9
10
module Types
  class Query < GraphQL::Schema::Object
    field :me, String, null: false
    field :cakes, [Cake], null: false

    def me
      'mo'
    end
  end
end