Queryresult is empty in data table api. What could be the cause?

I’m testing using postman because I want to check the values stored in a datatable on an external server.

Obviously, there are three numbers, but there is no value in queryresult. What could be the cause?

response :
{
“hasMore”: false,
“total”: 3,
“metaInfo”: [
{
“name”: “user_phone”,
“type”: “string”
},
{
“name”: “user_team”,
“type”: “string”
},
{
“name”: “rank”,
“type”: “string”
},
{
“name”: “currently_employed”,
“type”: “string”
},
{
“name”: “user_pw”,
“type”: “string”
},
{
“name”: “user_name”,
“type”: “string”
},
{
“name”: “user_id”,
“type”: “string”
},
{
“name”: “sys_Id”,
“type”: “string”
},
{
“name”: “Created_On”,
“type”: “date”
},
{
“name”: “Updated_On”,
“type”: “date”
},
{
“name”: “Created_By”,
“type”: “string”
},
{
“name”: “Updated_By”,
“type”: “string”
}
],
“queryResult”: []
}

i solved this problem

I was misunderstanding about offsets.

It came out when I set the offset to 0.

Thanks for reading.