How to check why a line from data input is dropped

My input data file has 10k records. After I load it I only get 46 vertices. Based on my quick glance of the file I should get way more than that. Is there a log somewhere showing why a record is dropped during ingestion?

How did you load the data? REST API or (command line) loading job or GraphStudio?

I load the data using remote gsql client and gsql command.

Sorry I forgot to update the thread yesterday. I was able to figure out what the issue was by examining the v_ids from the vertices. I was loading a json file with hex string like “0x3fe” as values. The field was set to UINT in the schema, so gsql treats all hex string as 0, which led to many “duplicate” edges.