hi,
I'm running some server code to group and sum data.
Then in the app I'm running a server code service, which gives the following response
[{
"totalSum": 8,
"Gamer": "JOHN",
"Location": "A"
}, {
"totalSum": 20,
"Gamer": "ALAN",
"Location": "A"
}, {
"totalSum": 21,
"Gamer": "FRANK",
"Location": "B"
}]
I'm trying to use "where" as a request query string as follows
{"Location":"B"}
but it has no effect on the response.
This method works fine for normal database services, is their an issue with running it for server code services?