Hello! I am new to Meltano and I have been explori...
# troubleshooting
j
Hello! I am new to Meltano and I have been exploring the netsuite tap. I have a question about the number of entities that can be downloaded from NetSuite. When I run:
meltano select tap-netsuite --list --all
does the output list all available entities, and is there a way to add more? Upon examining the code, I noticed that there is a hardcoded list of entities. Is there a way to increase the amount of entities from netsuite? does the catalog have any influence over this? I apologize if I am using the wrong terms, and thank you for your help!
g
the entities are the ones that have schemas and retrieval setup in this tap/ their sdk, so adding a new entity type looks something like this: https://github.com/hotgluexyz/tap-netsuite/pull/29/files
j
Ok I get it, so the tap should be updated was thinking like it had a discover or smth like that thank you @gary_james!
g
I think entities referred to transaction types or something like that in Netsuite's case?? so it requires setting up a schema/ class for each one IIRC
j
Yeah, it makes sense, all those entities should be added like in the PR you shared above