UNPKG

@aws-amplify/data-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer - Aliased to use `Data` name scheme.

9 lines (8 loc) 223 B
/** * Build a string describing the path. */ export default function printPathArray(path) { return path.map(function (key) { return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key; }).join(''); }