Skip to main content

appsConnection

Public marketplace listing of apps. PUBLIC: no authentication required. Returns ONLY apps with visibility=PUBLIC AND status=LIVE (drafts, unlisted, private, and archived apps are never returned). Results are ordered newest-first. Relay cursor connection; prefer this over the offset-based apps.

appsConnection(
first: Int
after: String
filter: AppMarketplaceFilterInput
): AppsConnection!

Arguments

appsConnection.first ● Int scalar

Return the first N edges after after. Default 50; clamped to 1..200.

appsConnection.after ● String scalar

Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.

appsConnection.filter ● AppMarketplaceFilterInput input

Optional marketplace filters (free-text query over name/description, and/or an org slug). Omit to list all live public apps.

Type

AppsConnection object

A Relay cursor connection over App records. Page with first/after; pass pageInfo.endCursor back as after for the next page.