export declare type QueryTypeOLD = 'query' | 'mutation' | 'subscription'; export interface IGraphQLParamOLD { name: string; value: any; } export interface IGraphQLNodeOLD { name: string; params?: IGraphQLParamOLD[]; propertyNodes?: IGraphQLNodeOLD[]; } export interface IGraphQLQueryOLD { queryType: QueryTypeOLD; name: string; params?: IGraphQLParamOLD[]; node: IGraphQLNodeOLD; } export declare function buildQueryStringOLD(query: IGraphQLQueryOLD): string; export interface IPropertiesConfigOLD { properties: any; relationProperties?: any; } export declare function createQueryOLD(queryType: QueryTypeOLD, name: string, params: any, propertiesConfig: IPropertiesConfigOLD): IGraphQLQueryOLD; export declare function paramsToQueryParamsOLD(params: any): { name: string; value: unknown; }[]; export declare function propertyNodesToQueryNodesOLD(properties: any): IGraphQLNodeOLD[]; export declare function relationPropertyNodesToQueryNodesOLD(relationProperties: any): IGraphQLNodeOLD[];