I have a result from Fiddler (please see the attached image), how can I get the results where the arrow is pointing to? This is what I have done so far and thank you:
function GetRefiners() {
$.ajax({
url: "myUrl",
type: "GET",
headers: {
"accept": "application/json;odata=verbose",
},
success: function(data){
$.each(data.d.query, function(list){
});
},
error: function(error){
alert("Error message\n" + JSON.stringify(error));
}
}
);
}