> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/guides/knowledge-graph/fields.md).

# Fields

The following basic query retrieves a list of assets with their IDs and full names:

{% columns %}
{% column %}
{% code title="Query" %}

```graphql
query {
  assets {
    id
    fullName
  }
}
```

{% endcode %}
{% endcolumn %}

{% column %}
{% code title="Response" %}

```json
{
  "data": {
    "assets": [
      {
        "id": "47741d1f-4d0b-4af0-a907-78782f9dca46",
        "fullName": "First Asset"
      },
      {
        "id": "b34cc4dd-0f7d-4e06-82e6-9cf6e7ddf113",
        "fullName": "Another Asset"
      },
      ...
    ]
  }
}
```

{% endcode %}
{% endcolumn %}
{% endcolumns %}
