Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference

import type { GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference } from "https://googleapis.deno.dev/v1/datacatalog:v1.ts";

A reference to a source or destination node in a graph edge.

interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference {
edgeTableColumns?: string[];
nodeAlias?: string;
nodeTableColumns?: string[];
}

§Properties

§
edgeTableColumns?: string[]
[src]

Required. The referencing columns in the edge table. The size of edge_table_columns must be equal to the size of node_table_columns.

§
nodeAlias?: string
[src]

Required. The reference to the source/destination node of the edge. This name must be a valid alias of a node element in the same graph. Example, Person node can be a source node name of an edge element Person_to_Address.

§
nodeTableColumns?: string[]
[src]

Required. The referenced columns of the source node table.