React-based web application that enables users to visualize both property graph and RDF data and explore connections between data without having to write graph queries.
The Vertex and Edge types have a type definition that allowed adding additional properties at runtime. Since TypeScript does not actually do any typing at runtime, this is unnecessary.
This extra type information was used by the abstraction around React Table. This essentially undoes a part of a change I made months ago to fix the table export.
297
Validation
Verified table still works as it did before
Verified table export still works as it did before (including trying all the export options)
Related Issues
Check List
[x] I confirm that my contribution is made under the terms of the Apache 2.0
license.
[x] I have run pnpm checks to ensure code compiles and meets standards.
[x] I have run pnpm test to check if all tests are passing.
[ ] I have covered new added functionality with unit tests if necessary.
Description
The
Vertex
andEdge
types have a type definition that allowed adding additional properties at runtime. Since TypeScript does not actually do any typing at runtime, this is unnecessary.This extra type information was used by the abstraction around React Table. This essentially undoes a part of a change I made months ago to fix the table export.
297
Validation
Related Issues
Check List
pnpm checks
to ensure code compiles and meets standards.pnpm test
to check if all tests are passing.Changelog.md
.