As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
You are getting undefined for "response.prop" because response is an array. Since you are querying with the _find_ method(as opposed to _get_) your response will be an array of records, not a single record. If you are positive you will only be getting back a single record, then just do **response[0].prop** instead.
federik21
this function:
```javascript
function validateToken(){
var tokenfield =document.getElementById("tokenField").value;
var query = new Kinvey.Query();
query.equalTo('token', tokenfield);
var promise = Kinvey.DataStore.find('tokens', query, {
success: function(response) {
console.log("risposta " + response.prop );
window.localStorage.setItem("opponent",response.prop );
$.mobile.changePage('#game'); //change page
}
});
}
```
gives a log: "risposta undefined"
How can I access the data?