Sha256: d888d55022caaea4a57bc65be181c8379d1f4a95dc03d2a6e1c421fe4f8ba6a8
Contents?: true
Size: 785 Bytes
Versions: 28
Compression:
Stored size: 785 Bytes
Contents
# frozen_string_literal: true require 'generators/graphql/type_generator' module Graphql module Generators # Generate an interface type by name, # with the specified fields. # # ``` # rails g graphql:interface NamedEntityType name:String! # ``` class InterfaceGenerator < TypeGeneratorBase desc "Create a GraphQL::InterfaceType with the given name and fields" source_root File.expand_path('../templates', __FILE__) argument :fields, type: :array, default: [], banner: "name:type name:type ...", desc: "Fields for this interface (type may be expressed as Ruby or GraphQL)" def create_type_file template "interface.erb", "app/graphql/types/#{type_file_name}.rb" end end end end
Version data entries
28 entries across 28 versions & 1 rubygems