Values.PropertygraphDataSourceA Gremlin or openCypher change record.
type nonrec t = {id : String_.t option;The ID of the Gremlin or openCypher element.
*)type_ : String_.t option;The type of this Gremlin or openCypher element. Must be one of: v1 - Vertex label for Gremlin, or node label for openCypher. vp - Vertex properties for Gremlin, or node properties for openCypher. e - Edge and edge label for Gremlin, or relationship and relationship type for openCypher. ep - Edge properties for Gremlin, or relationship properties for openCypher.
*)key : String_.t option;The property name. For element labels, this is label.
*)value : Document.t option;This is a JSON object that contains a value field for the value itself, and a datatype field for the JSON data type of that value:
*)from : String_.t option;If this is an edge (type = e), the ID of the corresponding from vertex or source node.
*)to_ : String_.t option;If this is an edge (type = e), the ID of the corresponding to vertex or target node.
*)}