Hello guys i want to ask, so i have JSON response like this:
{
"homeListComponents": [
{
"page": 1,
"listComponents": [
{
"componentName": "HEALTH_PRODUCT",
"componentDescription": "Showing health product component"
},
{
"componentName": "HEALTH_SERVICE",
"componentDescription": "Showing health service component"
},
{
"componentName": "OTHER_HEALTH_SERVICE",
"componentDescription": "Showing other health service component"
}
]
},
{
"page": 2,
...... //same like above
},
{
"page": 3,
...... //same like above
}
]
}
the response was successfully called in graphql using this query:
But, how can i call only page 1 ?
I already tried this query:
But the response is null.
Thank you.

