I have an application that I have developed with the arcgis API for javascript. I am loading some layers that have 1217 entities and when I go to visualize them I do not see the total of the entities. I will leave some screenshots and part of the code where I load the layers.


In the first image is my designed application where you can only see some entities. In the second image you can see the layer in arcgis pro.
Part of the code:
const aeroplane = new FeatureLayer({
popupTemplate: {
title: "Aeroplane",
content: [
{
type: "fields",
fieldInfos: [
{
fieldName: "Number_of",
label: "Routes",
},
{
fieldName: "Number_o_1",
label: "Number of flights",
},
{
fieldName: "CO2_emitte",
label: "CO2 emitted (tons)",
},
{
fieldName: "Net_Spent",
label: "Net Spent (USD)",
},
],
},
],
overwriteActions: false,
},
});
scene.add(aeroplane);
aeroplane.visible = false;