import { type ObjRef } from "@gooddata/sdk-model"; import { type IDashboardQuery } from "./base.js"; /** * @alpha */ export interface IQueryConnectingAttributes extends IDashboardQuery { type: "GDC.DASH/QUERY.CONNECTING.ATTRIBUTES"; payload: { readonly refs: [ObjRef, ObjRef][]; }; } /** * Creates action through which you can query connecting attributes for the information about * possibility of parent-child attribute filter relationship. * * @param refs - references of the attributes * @param correlationId - specify correlation id to use for this command. this will be included in all * events that will be emitted during the command processing * @returns connecting attributes for given array of references * * @alpha */ export declare function queryConnectingAttributes(refs: [ObjRef, ObjRef][], correlationId?: string): IQueryConnectingAttributes; //# sourceMappingURL=connectingAttributes.d.ts.map