Matthew Zember
Matthew Zember
I think this approach is both valid and a good incremental step forward. It solves a problem we have. I do think that it may be worth considering if using...
Looks good to me. Let's make an alpha version.
@Gonzalo-Avalos-Ribas I think a lot of our changes in this were made to figure out which _types we should mark as partial if an upload fails. What if we just...
Thinking about this further, I think that `onRelationshipsFlushed`/`onEntitiesFlushed` does not need to be locked. The order of uploads shouldn't matter as long as the uploads are not duplicated. The locking...
However, this function would need to be refactored to support that as the reference to the entities or relationships is created during the lock operation itself, but it doesn't escape...
Disable `createIntegrationEntity`'s automatic extraction of properties by default. (Keep flag or toggle to enable it)
@austinkelleher I've thought about this recently, and I now think that a `createIntegrationEntityV2` may work better.
Sketching ideas. ```ts import { validateRawData } from './rawData'; import { ResourceTagList, ResourceTagMap } from './tagging'; enum EntityClasses { DEVICE = 'Device', } export interface GraphObject { _key: string; _type:...