UNPKG

@graphql-tools/stitching-directives

Version:

A set of utils for faster development of GraphQL tools

6 lines (5 loc) 440 B
import { PropertyTree } from './types.js'; 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;