Skip to content

Commit

Permalink
New translations querying-the-graph.mdx (Italian)
Browse files Browse the repository at this point in the history
  • Loading branch information
benface committed Dec 30, 2023
1 parent 96ac2fe commit 02f3f2e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions website/pages/it/querying/querying-the-graph.mdx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
title: Querying The Graph
title: Effettuare query di The Graph
---

With the subgraph deployed, visit the [Graph Explorer](https://thegraph.com/explorer) to open up a [GraphiQL](https://github.com/graphql/graphiql) interface where you can explore the deployed GraphQL API for the subgraph by issuing queries and viewing the schema.
Con il subgraph distribuito, visitare il [Graph Explorer](https://thegraph.com/explorer) per aprire un'interfaccia [GraphiQL](https://github.com/graphql/graphiql) in cui è possibile esplorare l'API GraphQL distribuita per il subgraph, emettendo query e visualizzando lo schema.

An example is provided below, but please see the [Query API](/querying/graphql-api) for a complete reference on how to query the subgraph's entities.
Di seguito viene fornito un esempio, ma si rimanda alla pagina [Query API](/querying/graphql-api) per un riferimento completo su come effettuare query delle entità del subgraph.

## Example
## Esempio

This query lists all the counters our mapping has created. Since we only create one, the result will only contain our one `default-counter`:
Questa query elenca tutti i contatori creati dalla nostra mapping. Poiché ne creiamo solo uno, il risultato conterrà solo il nostro `default-counter`:

```graphql
{
Expand All @@ -19,14 +19,14 @@ This query lists all the counters our mapping has created. Since we only create
}
```

## Using The Graph Explorer
## Utilizzo di The Graph Explorer

Each subgraph published to the decentralized Graph Explorer has a unique query URL that you can find by navigating to the subgraph details page and clicking on the "Query" button on the top right corner. This will open a side pane that will give you the unique query URL of the subgraph as well as some instructions about how to query it.
Ogni subgraph pubblicato sul Graph Explorer decentralizzato ha un URL di query unico che si può trovare navigando nella pagina dei dettagli del subgraph e facendo clic sul pulsante "Query" nell'angolo in alto a destra. Si aprirà un riquadro laterale che fornirà l'URL di query unico del subgraph e alcune istruzioni su come effettuare query.

![Query Subgraph Pane](/img/query-subgraph-pane.png)
![Riquadro del Subgraph della Query](/img/query-subgraph-pane.png)

As you can notice, this query URL must use a unique API key. You can create and manage your API keys in the [Subgraph Studio](https://thegraph.com/studio) in the "API Keys" section. Learn more about how to use Subgraph Studio [here](/deploying/subgraph-studio).
Come si può notare, questo URL di query deve utilizzare una chiave API unica. È possibile creare e gestire le chiavi API nel [Subgraph Studio](https://thegraph.com/studio), nella sezione "Chiavi API". Per saperne di più su come utilizzare Subgraph Studio, cliccate [qui](/deploying/subgraph-studio).

Querying subgraphs using your API keys will generate query fees that will be paid in GRT. You can learn more about billing [here](/billing).
Effettuare query dei subgraph utilizzando le chiavi API genera tariffe di query che saranno pagate in GRT. Per saperne di più sulla fatturazione, cliccare [qui](/billing).

You can also use the GraphQL playground in the "Playground" tab to query a subgraph within The Graph Explorer.
È inoltre possibile utilizzare il GraphQL playground nella scheda "Playground" per effettuare query di un subgraph all'interno di Graph Explorer.

0 comments on commit 02f3f2e

Please sign in to comment.