org.atsui.List

atsui.org

Documentation

Scrollable vertical list with paginated data source.

main procedure

Scrollable vertical list with paginated data source.

Input

Encodingapplication/json
input unknown Optional

Parameters to pass to the query.

query stringnsid Required

XRPC query to call for pages of items. Resolved through the import stack via at.inlay.endpoint records.

Output

Encodingapplication/json
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "query"
      ],
      "properties": {
        "input": {
          "type": "unknown",
          "description": "Parameters to pass to the query."
        },
        "query": {
          "type": "string",
          "format": "nsid",
          "description": "XRPC query to call for pages of items. Resolved through the import stack via at.inlay.endpoint records."
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "ref": "at.inlay.defs#response",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Scrollable vertical list with paginated data source."
}
page object

Response shape from a List data source query.

Properties

cursor string Optional

Opaque pagination token. Absent means no more items.

maxLength: 512 bytes
View raw schema
{
  "type": "object",
  "required": [
    "items"
  ],
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "ref": "at.inlay.defs#element",
        "type": "ref"
      },
      "description": "Elements to render as list rows."
    },
    "cursor": {
      "type": "string",
      "maxLength": 512,
      "description": "Opaque pagination token. Absent means no more items."
    }
  },
  "description": "Response shape from a List data source query."
}

Lexicon Garden

@