* Generate a key for deduplication. * For UNION, we primarily care about the result values, not the full path structure. * After RETURN, values are typically arrays of returned column values.
(value: unknown)
| 4157 | * After RETURN, values are typically arrays of returned column values. |
| 4158 | */ |
| 4159 | protected getDeduplicationKey(value: unknown): string { |
| 4160 | return JSON.stringify(this.serializeValue(value)); |
| 4161 | } |
| 4162 | |
| 4163 | /** |
| 4164 | * Serialize a value for comparison/deduplication. |
no test coverage detected