shyft
Version:
Model driven GraphQL API framework
9 lines (8 loc) • 456 B
TypeScript
import { Entity } from '../engine/entity/Entity';
import { ViewEntity } from '../engine/entity/ViewEntity';
export declare const generateFilterInput: (entity: any, graphRegistry: any) => {
type: any;
description: string;
};
export declare const splitAttributeAndFilterOperator: (str: any) => any;
export declare const transformFilterLevel: (entity: Entity | ViewEntity, filters: {}, attributes: any, context?: any, path?: string[]) => Promise<{}>;