From 3d98641a45540d7a89c5c4e398f5a1786711e849 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Thu, 9 Jul 2020 14:35:31 -0700 Subject: [PATCH] DataLinks: add internal flag in comments (#26215) --- packages/grafana-data/src/types/dataLink.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-data/src/types/dataLink.ts b/packages/grafana-data/src/types/dataLink.ts index 09484215977..b17137e46a6 100644 --- a/packages/grafana-data/src/types/dataLink.ts +++ b/packages/grafana-data/src/types/dataLink.ts @@ -35,6 +35,7 @@ export interface DataLink { // If dataLink represents internal link this has to be filled. Internal link is defined as a query in a particular // datas ource that we want to show to the user. Usually this results in a link to explore but can also lead to // more custom onClick behaviour if needed. + // @internal and subject to change in future releases internal?: { query: T; datasourceUid: string;