UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

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