Export from Google Workspace to Neo4j
CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.
The CloudQuery Google Workspace plugin allows you to sync data from Google Workspace to any destination, including Neo4j. It takes only minutes to get started.
Google Workspace
Pull directory information from your Google Workspace organization. Requires admin privileges.
Neo4j
This destination plugin lets you sync data from a CloudQuery source to a Neo4j database
Table of Contents
MacOS Setup
Step 1. Install CloudQuery
brew install cloudquery/tap/cloudquery
Step 2. Log in to CloudQuery CLI
cloudquery login
Step 3. Configure Google Workspace source plugin
You can find more information about the configuration in the plugin documentation
kind: source
spec:
name: "googleworkspace"
path: "jsifuentes/googleworkspace"
registry: "cloudquery"
version: "v1.1.0"
destinations:
- "postgresql"
spec:
customer_id: your Google Workspace Customer ID
oauth:
# token_file: ./token.json
client_id: your Google Cloud Project OAuth Client ID
client_secret: your Google Cloud Project OAuth Client Secret
Step 4. Configure Neo4j destination plugin
You can find more information about the configuration in the plugin documentation
kind: destination
spec:
name: "neo4j"
path: "cloudquery/neo4j"
registry: "cloudquery"
version: "v5.3.6"
# Learn more about the configuration options at https://cql.ink/neo4j_destination
spec:
connection_string: "${NEO4J_CONNECTION_STRING}"
username: "${NEO4J_USERNAME}"
password: "${NEO4J_PASSWORD}"
# Optional parameters:
# batch_size: 1000 # 1K entries
# batch_size_bytes: 4194304 # 4 MiB
Step 5. Run Sync
cloudquery sync googleworkspace.yml neo4j.yml