When using select on an object it seems to sometimes be renamed to struct.
eg
input(relation: 'Roads_geopackage', name: 'exposure') as exposures_input
-> select({*})
-> select({orig_geom: exposure.geom, exposure: layer_intersection(exposure, bookmark('Stop_Banks_merged'), {SB_Protection: 'stb_height'}, true)})
-> unnest(exposure, 'segmentID')
# -> select({{exposure.*, segmentID}})
-> select({{exposure.geom}})
runs but gives incorrect results. If I include the select on line 5 then it gives the error
- Could not find 'exposure.geom' among [struct.geom, struct.fid_1, struct.road_name, struct.road_surfa, struct.road_class, struct.SH_ID, struct.UID, struct.road_lanes, struct.roadtype_f, struct.roadtype_s, struct.roadtype_t, struct.roadtype_b, struct.TA_name, struct.nzta_heavy, struct.nzta_hea_1, struct.nzta_onrc, struct.nzta_surfa, struct.nzta_traff, struct.ntza_width, struct.nzta_id, struct.island, struct.mp_dist, struct.road_width, struct.BUFF_DIST, struct.ORIG_FID, struct.SH_Flag, struct.SB_Protection, struct.segmentID]
suggesting -> select({{exposure.*, segmentID}}) has renamed exposure to struct.
How can I either stop the select step from renaming it or how can I re-rename it?