module Graphlient::Extensions::Query

Public Instance Methods

method_missing(method_name, *args, &block) click to toggle source
# File lib/graphlient/extensions/query.rb, line 4
def method_missing(method_name, *args, &block)
  Graphlient::Query.new do
    send(method_name, *args, &block)
  end
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/graphlient/extensions/query.rb, line 10
def respond_to_missing?(method_name, include_private = false)
  super
end