result[:issues]=Issue.where(project_id: project_ids).where("title like :query OR description like :query ",query: "%#{query}%").order('updated_at DESC').limit(20)
result[:notes]=Note.where(noteable_type: 'issue').where(project_id: project_ids).where("note like :query",query: "%#{query}%").order('updated_at DESC').limit(20)