1
我正在開發一個API,使用Codeigniter和Alex Bilbies oAuth2和MongoDB庫。 我需要做一個MongoDB查詢,我在這裏查詢_id爲1且訪問令牌爲空的文檔。MongoDB查詢問題
我有這到目前爲止,但它不工作:
$exists_query = $this->CI->mongo_db->select('access_token')->where(array('_id' => $session_id, 'access_token' != NULL))->get('oauth_sessions');
我想這太:
$exists_query = $this->CI->mongo_db->select('access_token')->where(array('_id' => $session_id))->where_not_equal('access_token', NULL)->get('oauth_sessions');
如何更改此查詢工作?