Frontmatter
| id | 8994 |
| title | feat: Add get() method to Neo.data.Record |
| state | Closed |
| labels | enhancementdeveloper-experienceaicore |
| assignees | tobiu |
| createdAt | Feb 5, 2026, 12:28 AM |
| updatedAt | Feb 5, 2026, 12:37 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8994 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 5, 2026, 12:37 AM |
feat: Add get() method to Neo.data.Record
tobiu assigned to @tobiu on Feb 5, 2026, 12:36 AM

tobiu
Feb 5, 2026, 12:37 AM
Input from Gemini 3 Pro:
✦ Changes committed and pushed.
Neo.data.Recordnow has aget(field)method.Neo.grid.Rowusesrecord.get()for cell value retrieval, simplifying the logic.
tobiu closed this issue on Feb 5, 2026, 12:37 AM
To improve Developer Experience (DX) and simplify access to nested data fields, we should add a
get(field)method toNeo.data.Record.Currently, accessing unmodeled nested data requires manual parsing or
Neo.nsusage, as seen insrc/grid/Row.mjs.The
get()method will:Neo.nslookup on the raw data object for unmodeled nested paths.This change requires updating
src/data/RecordFactory.mjsand refactoringsrc/grid/Row.mjs.