> 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:

<table data-header-hidden><thead><tr><th></th><th></th></tr></thead><tbody><tr><td><pre><code>query {
    assets {
        id
        fullName
    }
}
</code></pre></td><td><pre><code>{
  "data": {
    "assets": [
      {
        "id": "47741d1f-4d0b-4af0-a907-78782f9dca46",
        "fullName": "First Asset"
      },
      {
        "id": "b34cc4dd-0f7d-4e06-82e6-9cf6e7ddf113",
        "fullName": "Another Asset"
      },
      ...
    ]
  }
}
</code></pre></td></tr></tbody></table>
