We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6304a9b commit b4e782aCopy full SHA for b4e782a
1 file changed
sdks/julia/LogicalQueryProtocol.jl/src/properties.jl
@@ -224,6 +224,11 @@ function global_ids(data::Data)
224
elseif dt.name == :csv_data
225
csv_data = dt[]::CSVData
226
ids = LQPRelationId[]
227
+ # Table mode: the target carries a single relation ID for the whole table.
228
+ if !isnothing(csv_data.target) && !isnothing(csv_data.target.target_id)
229
+ push!(ids, persistent_id(csv_data.target.target_id))
230
+ end
231
+ # Column mode: each GNFColumn has its own target_id.
232
for column in csv_data.columns
233
if !isnothing(column.target_id)
234
push!(ids, persistent_id(column.target_id))
0 commit comments