I am Using AWS DMS to migrate schemas from MySQL to an AWS Neptune graph database. Part of this process is writing a GraphMappingConfig.json file. There isn't much documentation, but I am wondering, is there is a way to implicitly define vertex properties from the column names and values?
For example, I don't want to have to write a separate "vertex_property" object for each property, because I have many tables and dozens of columns on each table. Instead, I suspect that there should be a way to encode that I want vertex properties to be built as {column_name: column_value} ranging over all columns except the table's id column.