vw_relationship_links
Creates, updates, deletes, gets or lists a vw_relationship_links
resource.
Overview
Name | vw_relationship_links |
Type | View |
Id | azure_extras.customer_insights.vw_relationship_links |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.interactionType') as "interaction_type",
JSON_EXTRACT(properties, '$.linkName') as "link_name",
JSON_EXTRACT(properties, '$.mappings') as "mappings",
JSON_EXTRACT(properties, '$.profilePropertyReferences') as "profile_property_references",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.relatedProfilePropertyReferences') as "related_profile_property_references",
JSON_EXTRACT(properties, '$.relationshipName') as "relationship_name",
JSON_EXTRACT(properties, '$.relationshipGuidId') as "relationship_guid_id",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
subscriptionId,
resourceGroupName,
hubName,
relationshipLinkName
FROM azure_extras.customer_insights.relationship_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.interactionType') as "interaction_type",
json_extract_path_text(properties, '$.linkName') as "link_name",
json_extract_path_text(properties, '$.mappings') as "mappings",
json_extract_path_text(properties, '$.profilePropertyReferences') as "profile_property_references",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.relatedProfilePropertyReferences') as "related_profile_property_references",
json_extract_path_text(properties, '$.relationshipName') as "relationship_name",
json_extract_path_text(properties, '$.relationshipGuidId') as "relationship_guid_id",
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
subscriptionId,
resourceGroupName,
hubName,
relationshipLinkName
FROM azure_extras.customer_insights.relationship_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me';