Sviluppatori

Sviluppa su Data Graphs

API, SDK e servizi MCP completi, pensati per gli sviluppatori.
Dalla tua prima query alla messa in produzione in pochi giorni.

REST API

Funzionalità complete di lettura, scrittura e query. Payload JSON-LD, query OpenCypher/GQL, webhook.

Documentazione API

Servizi MCP

Servizi Model Context Protocol integrati per collegare i tuoi agenti AI al tuo Knowledge Graph.

Guida all'integrazione MCP

Node.js SDK

L’SDK ufficiale datagraphs-client per Node.js. Models, Concepts, Datasets, Candidates e altro ancora.

Guida rapida all'SDK

Python SDK

L’SDK ufficiale datagraphs-client per Python. Copertura completa delle API con pattern idiomatici Python e supporto asincrono.

Documentazione dell'SDK Python
// Install: npm i @datalanguage/datagraphs-client
const DataGraphs = require('@datalanguage/datagraphs-client');

const dg = new DataGraphs({
  dataset: 'your-dataset',
  apiKey: process.env.DG_API_KEY,
  clientId: process.env.DG_CLIENT_ID,
  clientSecret: process.env.DG_CLIENT_SECRET,
});

// Get the active domain model (schema-first)
const model = await dg.models.getActive();

// Query with OpenCypher/GQL
const results = await dg.query.cypher(
  'MATCH (p:Product)-[:HAS_INGREDIENT]->(i) RETURN p, i LIMIT 10'
);

Autenticazione

Supporto per chiavi API e OAuth 2.0. Integrazione SSO enterprise disponibile.

Webhook

Webhook granulari ed espressivi per pattern di integrazione basati su eventi.