> For the complete documentation index, see [llms.txt](https://docs.geopard.tech/geopard-tutorials/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.geopard.tech/geopard-tutorials/it/documentazione-api/diagrammi-con-flussi-di-base/2.-sottoscrizione-graphql.md).

# 2. Sottoscrizione GraphQL

Il diagramma di sequenza per le Subscription GraphQL illustra come beneficiare dell'architettura event-driven implementata nel core di GeoPard. Al verificarsi di qualsiasi modifica alle entità collegate, il

API GeoPard emette prontamente un evento che cattura le entità impattate e l'operazione corrispondente (`INSERIRE`, `MODIFICARE`, `RIMUOVERE`). L'ambito di queste subscription è ampio, coprendo tutte le entità come Azienda agricola, Campo, Immagine satellitare, Dataset del suolo, Dataset AsApplied, Dataset di resa, Mappa topografica, Note, ecc.&#x20;

La Subscription GraphQL ([Richiesta 1 o R1](/geopard-tutorials/it/documentazione-api/panoramica-delle-richieste-api-geopard/1.-sottoscrizione-ottieni-eventi.md)) opera su un WebSocket dove tutti gli eventi vengono consegnati quasi in tempo reale, garantendo la comunicazione immediata di qualsiasi modifica.&#x20;

{% hint style="danger" %}
Il ricevitore degli eventi di subscription dovrebbe funzionare come un servizio di base, responsabile dell'instradamento degli eventi ricevuti verso un servizio successivo dove viene applicata la logica di elaborazione. È fondamentale che questo ricevitore non esegua alcuna elaborazione di per sé.
{% endhint %}

Inoltre, qualora ci fossero eventi persi o mancanti, gli utenti hanno la possibilità di recuperarli. Questo si ottiene eseguendo una query GraphQL su un intervallo di date e entità specifiche (Utente, Azienda agricola, Campo), consentendo di fatto un completo recupero degli eventi passati ([Richiesta 2 o R2](/geopard-tutorials/it/documentazione-api/panoramica-delle-richieste-api-geopard/82.-query-ripristina-gli-eventi-della-sottoscrizione.md)). Questo livello di funzionalità garantisce che nessuna informazione venga persa, mantenendo l'integrità e la coerenza dei dati utente.

<figure><img src="/files/274e238cf266bf3c746beb7ed7ce878e7261bd29" alt=""><figcaption><p>Diagramma di sequenza: Lavorare con gli eventi di Subscription</p></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.geopard.tech/geopard-tutorials/it/documentazione-api/diagrammi-con-flussi-di-base/2.-sottoscrizione-graphql.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
