graphistry / graphbi

Graphistry monorepo for BI integrations
0 stars 0 forks source link

Multi-key src/dst shapings ignore all keys after the first #52

Open lmeyerov opened 2 years ago

lmeyerov commented 2 years ago

When multiple fields are put in for the src/dst, only the first is used

Ex: src = [ VP, Region ] should cause nodes like (Jane, USA) but instead only creates node Jane Screenshot from 2022-05-10 16-24-45

dess890 commented 2 years ago

lines 47-52 needs to be removed in capabilities.json "drilldown": { "roles": [ "Source", "Target" ] },

dess890 commented 2 years ago

need to implement .filter and map instead of .find in visual.ts

line 160 const srcColMetadata = view.metadata.columns.find((c) => c.roles.Source);

line 163 const dstColMetadata = view.metadata.columns.find((c) => c.roles.Destination);