0

I'm using usergrid and need to execute raw Cassandra query. Is it possible to execute raw Cassandra query from usergrid api?

Lionel
  • 604
  • 9
  • 26

2 Answers2

3

No, it's not possible through the API.

Scott Ganyo
  • 311
  • 3
  • 4
-1

Yes it is possible.

Use like this.

$query_string = array('access_token'=>$oauth_token,'limit'=>'10'); // Use more condition here. $users = $client->get_collection('users',$query_string);