Sha256: 0afd7082fb0869ad6efd92f72eb2091095a63b9153ac96b47f786d3d45912274
Contents?: true
Size: 416 Bytes
Versions: 61
Compression:
Stored size: 416 Bytes
Contents
module Types class QueryType < Types::BaseObject # Add root-level fields here. # They will be entry points for queries on your schema. # TODO: remove me field :test_field, String, null: false, description: "An example field added by the generator" def test_field "Hello World!" end <% if options[:relay] %> field :node, field: GraphQL::Relay::Node.field <% end %> end end
Version data entries
61 entries across 61 versions & 1 rubygems