UNPKG

@graphql-tools/graphql

Version:
7 lines (6 loc) 193 B
/** * Build a string describing the path. */ export function printPathArray(path) { return path.map(key => (typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key)).join(''); }