ArcFlow
Company
Managed Services
Markets
  • News
  • LOG IN
  • GET STARTED

OZ brings Visual Intelligence to physical venues, a managed edge layer that lets real-world environments see, understand, and act in real time.

Talk to us

ArcFlow

  • World Models
  • Sensors

Managed Services

  • OZ VI Venue 1
  • Case Studies

Markets

  • Sports
  • Broadcasting
  • Robotics

Company

  • About
  • Technology
  • Careers
  • Contact

Ready to see it live?

Talk to the OZ team about deploying at your venues, from a single pilot match to a full regional rollout.

Schedule a deployment review

© 2026 OZ. All rights reserved.

LinkedIn
ArcFlow Docs
Get Started
  • Get Started
  • Quickstart
  • Installation
  • Project Setup
  • Platforms
  • Bindings
  • Licensing
  • Pricing
Capabilities
  • Vector Search
  • Graph Algorithms
  • Sync
  • MCP Server (AI Agents)
  • Live Queries
  • Programs
  • Temporal
  • Spatial
  • Trusted RAG
  • Behavior Graph
  • Agent-Native
  • Event Sourcing
  • GPU Acceleration
  • Intent Relay
Concepts
  • World Model
  • Graph Model
  • Query Language (GQL)
  • Graph Patterns
  • SQL vs GQL
  • Parameters
  • Query Results
  • Persistence & WAL
  • Error Handling
  • Observations & Evidence
  • Confidence & Provenance
  • Proof Artifacts & Gates
  • Skills
GQL / WorldCypher
  • Overview
  • MATCH
  • WHERE
  • RETURN
  • OPTIONAL MATCH
  • CREATE
  • SET
  • MERGE
  • DELETE
  • REMOVE
  • WITH
  • UNION
  • UNWIND
  • CASE
  • Spatial Queries
  • Temporal Queries
  • Algorithms Reference
  • Triggers
Schema
  • Overview
  • Indexes
  • Constraints
  • Data Types
Functions
  • Built-in Functions
  • Aggregations
  • Procedures
  • Shortest Path
  • EXPLAIN
  • PROFILE
Skills
  • Overview
  • CREATE SKILL
  • PROCESS NODE
  • REPROCESS EDGES
Operations
  • CLI
  • REPL Commands
  • Snapshot & Restore
  • Server Modes & PG Wire
  • Persistence
  • Import & Export
  • Docker
  • Architecture
  • Cloud Architecture
  • Sync Protocol (Deep Dive)
Guides
  • Agent Integration
  • World Model
  • Graph Model Fundamentals
  • Trusted RAG
  • Using Skills
  • Behavior Graphs
  • Swarm & Multi-Agent
  • Migration Guide
  • Filesystem Workspace
  • From SQL to GQL
  • ArcFlow for Coding Agents
  • Data Quality & Pipeline Integrity
  • Code Intelligence
Tutorials
  • Knowledge Graph
  • Entity Linking
  • Vector Search
  • Graph Algorithms
Recipes
  • CRUD
  • Multi-MATCH
  • MERGE (Upsert)
  • Full-Text Search
  • Temporal Queries
  • Batch Projection
  • GraphRAG
Use Cases
  • Agent Tooling
  • Knowledge Management
  • RAG Pipeline
  • Fraud Detection
  • Sports Analytics
  • Grounded Neural Objects
  • Behavior Graphs
  • Autonomous Systems
  • Digital Twins
  • Robotics & Perception
Reference
  • TypeScript API
  • GQL Conformance
  • Compatibility Matrix
  • Glossary
  • Data Types
  • Operators
  • Error Codes
  • Known Issues

Known Issues

Metal GPU initialization hang#

Symptom: require('arcflow') hangs indefinitely on macOS.

Cause: Metal GPU kernel compilation can deadlock during module initialization on some systems.

Fix:

export ARCFLOW_METAL_FORCE_UNAVAILABLE=true

This disables Metal acceleration and falls back to CPU. All queries still work — just without GPU acceleration.

pnpm file: protocol binary sync#

Symptom: After rebuilding the native module, pnpm doesn't pick up the new .node binary.

Fix: Manually copy the binary:

# Manually copy the built .node binary into your node_modules
cp <built-binary>.node node_modules/arcflow/arcflow.<platform>.node

SET multiple properties in one clause#

Workaround: Use separate SET clauses instead of comma-separated:

-- Instead of: SET n.a = 1, n.b = 2
-- Use:
MATCH (n:Person {id: 'p1'}) SET n.a = 1
MATCH (n:Person {id: 'p1'}) SET n.b = 2

Or use batchMutate for multiple property updates.

UNWIND limited to literal lists#

UNWIND currently supports literal arrays only:

-- Works:
UNWIND [1, 2, 3] AS x RETURN x
 
-- Does not work yet:
UNWIND n.aliases AS alias RETURN alias

Multi-MATCH column name collisions#

When returning the same property name from multiple MATCH variables, columns are deduplicated:

-- Both resolve to column "name" — second overwrites first:
MATCH (a:Person) MATCH (b:Org) RETURN a.name, b.name
 
-- Fix: use AS aliases
MATCH (a:Person) MATCH (b:Org) RETURN a.name AS personName, b.name AS orgName

This only affects multi-MATCH with same-named properties. Traversal queries (MATCH (a)-[:REL]->(b) RETURN a.name, b.name) work correctly since the engine resolves through the relationship.

Parameter values are string-coerced#

All query parameters are internally converted to strings before substitution. This works transparently for most cases, but be aware when comparing types in WHERE clauses.


See Also#

  • Error Codes — typed error model and recovery suggestions
  • Compatibility Matrix — feature support across platforms and versions
Try it
Open ↗⌘↵ to run
Loading engine…
← PreviousError Codes