Documentation
ARCADIE DOCS
Comprehensive documentation for the Arcadie Intelligence Platform. Everything you need to build intelligence applications at the edge.
Quick Example
example.ts
// Create an entity in the graph
const entity = await client.entities.create({
type: 'Person',
properties: {
name: 'John Smith',
dateOfBirth: '1985-03-15',
},
classification: 'UNCLASSIFIED',
});
// Create a relationship
await client.edges.create({
source: entity.id,
target: companyId,
relationship: 'WORKS_FOR',
weight: 1.0,
});
// Run entity resolution
const matches = await client.algorithms.entityResolution({
entityId: entity.id,
threshold: 0.85,
});