Class: Eco::API::UseCases::GraphQL::Base

Inherits:
Common::Loaders::UseCase show all
Includes:
Helpers::Base, Language::Methods::CallDetector
Defined in:
lib/eco/api/usecases/graphql/base.rb

Defined Under Namespace

Classes: NotImplementedMethod

Instance Attribute Summary

Attributes included from Lib::ErrorHandling

#exception, #exiting

Attributes included from Language::AuxiliarLogger

#logger

Instance Method Summary collapse

Methods included from Language::Methods::CallDetector

#called_via?

Methods included from Language::AuxiliarLogger

#log

Methods inherited from Common::Loaders::UseCase

#cli_apply!, #initialize

Methods included from Common::Loaders::UseCase::CliIdentify

#cli, #cli!

Methods included from Common::Loaders::UseCase::TargetModel

#target_model

Methods included from Common::Loaders::UseCase::Type

#type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!, original_name

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Method Details

#main(*_args) ⇒ Object



11
12
13
14
# File 'lib/eco/api/usecases/graphql/base.rb', line 11

def main(*_args)
  options[:end_get] = false
  process
end

#processObject

Write here your script



17
18
19
20
21
# File 'lib/eco/api/usecases/graphql/base.rb', line 17

def process
  return unless called_via?(Eco::API::UseCases::GraphQL::Base, __method__)

  raise NotImplementedMethod, "You need to inherit from this class ('#{self.class}')"
end