# org.latha.island.getIslands

> Published by [nandi.uk](https://lexicon.garden/identity/did:plc:ngokl2gnmpbvuvrfckja3g7p)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/org.latha.island.getIslands)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/org.latha.island.getIslands/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/org.latha.island.getIslands/examples)

## Definitions

### `org.latha.island.getIslands`

**Type**: `query`

List derived islands with their strata analysis. Returns islands that have been derived and stored, sorted by vertex count descending.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum number of islands to return. |
| `cursor` | `string` | No | Pagination cursor from a previous response. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `islands` | `array` | Yes |  |

### `org.latha.island.getIslands#islandSummary`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | Stable ID: truncated SHA-256 of the lexmin vertex. |
| `title` | `string` | No | Strata analysis title, if available. |
| `lexmin` | `string` | Yes | Lexicographically smallest vertex — the canonical reference. |
| `edgeCount` | `integer` | Yes |  |
| `recordUri` | `string` (at-uri) | No | AT URI of the org.latha.island record, if analyzed. |
| `vertexCount` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "org.latha.island.getIslands",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "islands"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "islands": {
              "type": "array",
              "items": {
                "ref": "#islandSummary",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum number of islands to return."
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor from a previous response."
          }
        }
      },
      "description": "List derived islands with their strata analysis. Returns islands that have been derived and stored, sorted by vertex count descending."
    },
    "islandSummary": {
      "type": "object",
      "required": [
        "id",
        "lexmin",
        "vertexCount",
        "edgeCount"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "Stable ID: truncated SHA-256 of the lexmin vertex."
        },
        "title": {
          "type": "string",
          "description": "Strata analysis title, if available."
        },
        "lexmin": {
          "type": "string",
          "description": "Lexicographically smallest vertex — the canonical reference."
        },
        "edgeCount": {
          "type": "integer"
        },
        "recordUri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the org.latha.island record, if analyzed."
        },
        "vertexCount": {
          "type": "integer"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
