@graphql-tools/stitching-directives
Version:
A set of utils for faster development of GraphQL tools
6 lines (5 loc) • 441 B
text/typescript
import { PropertyTree } from './types.cjs';
export declare function addProperty(object: Record<string, any>, path: Array<string | number>, value: any): void;
export declare function getProperty(object: Record<string, any>, path: Array<string>): any;
export declare function getProperties(object: Record<string, any>, propertyTree: PropertyTree): any;
export declare function propertyTreeFromPaths(paths: Array<Array<string>>): PropertyTree;