module Graphlient::Extensions::Query

def method_missing(method_name, *args, &block)

def method_missing(method_name, *args, &block)
  Graphlient::Query.new do
    send(method_name, *args, &block)
  end
end

def respond_to_missing?(method_name, include_private = false)

def respond_to_missing?(method_name, include_private = false)
  super
end