FieldValues returns the values of additional fields that were set on the join-table.
()
| 684 | |
| 685 | // FieldValues returns the values of additional fields that were set on the join-table. |
| 686 | func (e *EdgeTarget) FieldValues() []any { |
| 687 | vs := make([]any, len(e.Fields)) |
| 688 | for i, f := range e.Fields { |
| 689 | vs[i] = f.Value |
| 690 | } |
| 691 | return vs |
| 692 | } |
| 693 | |
| 694 | type ( |
| 695 | // CreateSpec holds the information for creating |