I'm using usergrid and need to execute raw Cassandra query. Is it possible to execute raw Cassandra query from usergrid api?
Asked
Active
Viewed 152 times
2 Answers
3
No, it's not possible through the API.

Scott Ganyo
- 311
- 3
- 4
-
Is there any hack to execute raw query? If no then, what would be the best alternative to solve problem that require raw query execution. – Lionel Aug 26 '15 at 14:49
-
@Pattinson You'd have to fork the Usergrid project and write that interface yourself. – brandonscript Aug 26 '15 at 16:09
-
No, that's completely unsupported functionality - you're pretty much on your own ;) – brandonscript Aug 26 '15 at 17:06
-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);

Deendyal Agarwal
- 103
- 1
- 3