| 1 | import { Queries } from "./query"; |
| 2 | |
| 3 | export interface DimensionInterface { |
| 4 | id: string; |
| 5 | organization: string; |
| 6 | managedBy?: "" | "api" | "config"; |
| 7 | owner: string; |
| 8 | datasource: string; |
| 9 | description?: string; |
| 10 | userIdType: string; |
| 11 | name: string; |
| 12 | sql: string; |
| 13 | dateCreated: Date | null; |
| 14 | dateUpdated: Date | null; |
| 15 | } |
| 16 | |
| 17 | export interface DimensionSlicesResult { |
| 18 | dimension: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…