diff --git a/app/scripts/services/Bolt.coffee b/app/scripts/services/Bolt.coffee index aac21292f09..3305879be71 100644 --- a/app/scripts/services/Bolt.coffee +++ b/app/scripts/services/Bolt.coffee @@ -354,6 +354,7 @@ angular.module('neo4jApp.services') Rows: plan.rows, EstimatedRows: plan.arguments.EstimatedRows, identifiers: plan.identifiers, + Index: plan.arguments.Index, children: plan.children.map boltPlanToRESTPlanShared } diff --git a/lib/visualization/components/queryPlan.coffee b/lib/visualization/components/queryPlan.coffee index 2cdca2f09af..9a38f76eeb6 100644 --- a/lib/visualization/components/queryPlan.coffee +++ b/lib/visualization/components/queryPlan.coffee @@ -104,6 +104,10 @@ neo.queryPlan = (element)-> wordWrap(identifiers.filter((d) -> not (/^ /.test(d))).join(', '), 'identifiers') details.push { className: 'padding' } + if index = operator.Index + wordWrap(index, 'index') + details.push { className: 'padding' } + if expression = operator.LegacyExpression ? operator.ExpandExpression ? operator.LabelName wordWrap(expression, 'expression') details.push { className: 'padding' }