Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions proto/shared/shared.flow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,24 @@ message NodeParameter {
}

message ReferenceValue {
// Database Identifier of node
oneof target {
// Ref Value points to flow input
int64 flow_input = 1;
Comment thread
raphael-goetz marked this conversation as resolved.
Outdated
// Ref Value points to a Result of a node, the int is the id of the node
int64 result = 2;
Comment thread
raphael-goetz marked this conversation as resolved.
Outdated
// Points to Value that is contained inside of a node
InputType input_type = 3;
Comment thread
raphael-goetz marked this conversation as resolved.
}
repeated ReferencePath paths = 4;
}

message InputType {
// Id of the node
int64 node_id = 1;
repeated ReferencePath paths = 2;
// Index of the parameter inside the function
int64 paramter_id = 2;
Comment thread
raphael-goetz marked this conversation as resolved.
Outdated
// Index of the input type of the data type
int64 input_id = 3;
}

message ReferencePath {
Expand Down