UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

9 lines 255 B
export function printPathArray(path) { if (path.length === 0) { return ''; } return ` at ${path .map((key) => (typeof key === 'number' ? `[${key}]` : `.${key}`)) .join('')}`; } //# sourceMappingURL=printPathArray.js.map