Class: Eco::API::UseCases::Default::Meta::GraphQLSchema
- Inherits:
-
Common::Loaders::UseCase
- Object
- Common::Loaders::Base
- Common::Loaders::CaseBase
- Common::Loaders::UseCase
- Eco::API::UseCases::Default::Meta::GraphQLSchema
- Includes:
- GraphQL::Helpers::Base
- Defined in:
- lib/eco/api/usecases/default/meta/graphql_schema.rb,
lib/eco/api/usecases/default/meta/cli/graphql_schema_cli.rb
Defined Under Namespace
Classes: Cli
Constant Summary collapse
- OUT_FOLDER =
'sftp'.freeze
- OUT_TIME_FORMAT =
'%Y%m%dT%H%M%S'.freeze
- OUT_FILENAME =
'graphql_schema'.freeze
Instance Attribute Summary
Attributes included from Lib::ErrorHandling
Attributes included from Language::AuxiliarLogger
Instance Method Summary collapse
Methods included from Language::AuxiliarLogger
Methods inherited from Common::Loaders::UseCase
Methods included from Common::Loaders::UseCase::CliIdentify
Methods included from Common::Loaders::UseCase::TargetModel
Methods included from Common::Loaders::UseCase::Type
Methods inherited from Common::Loaders::CaseBase
#name, name_only_once!, original_name
Methods inherited from Common::Loaders::Base
<=>, created_at, #initialize, set_created_at!
Methods included from Language::Klass::InheritableClassVars
#inheritable_attrs, #inheritable_class_vars, #inherited
Methods included from Language::Klass::Naming
#instance_variable_name, #to_constant
Methods included from Language::Klass::Hierarchy
Methods included from Language::Klass::Builder
Methods included from Language::Klass::Uid
Methods included from Language::Klass::Resolver
#class_resolver, #resolve_class
Methods included from Language::Klass::Const
#if_const, #redef_without_warning
Constructor Details
This class inherits a constructor from Eco::API::Common::Loaders::UseCase
Instance Method Details
#main(*_args) ⇒ Object
13 14 15 16 17 18 19 20 |
# File 'lib/eco/api/usecases/default/meta/graphql_schema.rb', line 13 def main(*_args) return unless graphql_schema File.open(output_filename, 'wb') { |fd| fd << schema_content } log(:info) { "Generated file: '#{output_filename}'" } end |