Product related api issue

I am currently working with this API, but it is not returning all the products as expected. I want to display all products through this API, however, some products are missing or not being fetched properly.

query {

  products(first: 250) {

edges {

node {

id

title

variants(first: 250) {

edges {

node {

id

title

sku

price {

amount

}

compareAtPrice {

amount

}

image {

url

altText

}

}

}

}

}

}

}

}

Api => https://kapass-rc.myshopify.com/api/2024-10/graphql.json
Token => X-Shopify-Storefront-Access-Token: 8237ba29a04ddd92d62c7a431324c091

Can you please expand more on the issue? The query only grabs the first 250 products, you have to paginate if you want more.