Method: InterMine::PathQuery::Query#params

Defined in:
lib/intermine/query.rb

#paramsObject

Return the parameter hash for running this query in its current state.



805
806
807
808
809
810
811
# File 'lib/intermine/query.rb', line 805

def params
    hash = {"query" => self.to_xml}
    if @service and @service.token
        hash["token"] = @service.token
    end
    return hash
end