module GraphQL::Client::ViewModule

def const_missing(name)

Returns module or raises NameError if missing.

name - String or Symbol constant name

Public: Implement constant missing hook to autoload View ERB statics.
def const_missing(name)
  load_and_set_module(name) || super
end