apps
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). Use myApps or appsForOrg for caller-visible or org-scoped apps. Results are ordered newest-first and paginated via pageInfo.
apps(
filter: AppMarketplaceFilterInput
limit: Int = 50
offset: Int = 0
): AppsPage!
Arguments
apps.filter ● AppMarketplaceFilterInput input
Optional marketplace filters (free-text query over name/description, and/or an org slug). Omit to list all live public apps.
apps.limit ● Int deprecated scalar
Use appsConnection(first:, after:) instead. See /overview/pagination.
Maximum number of apps to return. Defaults to 50; clamped to the range 1-100.
apps.offset ● Int deprecated scalar
Use appsConnection(first:, after:) instead. See /overview/pagination.
Number of apps to skip for pagination. Defaults to 0; negative values are treated as 0.
Type
AppsPage object
A paginated page of apps returned by the marketplace listing.