MCPcopy Create free account
hub / github.com/dataform-co/dataform / targetAsReadableString

Function targetAsReadableString

core/targets.ts:15–21  ·  view source on GitHub ↗
(target: dataform.ITarget)

Source from the content-addressed store, hash-verified

13 * and it should not be used for indexing. Use @see {@link targetStringifier} instead.
14 */
15export function targetAsReadableString(target: dataform.ITarget): string {
16 const nameParts = [target.name, target.schema];
17 if (!!target.database) {
18 nameParts.push(target.database);
19 }
20 return nameParts.reverse().join(".");
21}

Callers 11

compileErrorMethod · 0.90
checkCircularityMethod · 0.90
runCliFunction · 0.90
printExecutedGraphFunction · 0.90
pruneFunction · 0.90
bigquery.spec.tsFile · 0.90
api.spec.tsFile · 0.90
projects.spec.tsFile · 0.90

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected