Skip to main content

projects

List all projects you have access to in the organization.

Returns a cursor-paginated list. Use sort to control ordering (defaults to name ascending).

query {
projects(organizationId: "my-org") {
items { id name description tags }
cursor { next }
}
}
projects(
organizationId: ID!
sort: ProjectsSort
cursor: Cursor
): ProjectsPage

Arguments

projects.organizationId ● ID! non-null scalar {#organization-id}

Your organization's unique identifier.

projects.sort ● ProjectsSort input {#sort}

How to sort results. Defaults to name ascending.

projects.cursor ● Cursor input {#cursor}

Cursor from a previous page to fetch the next set of results.

Type

ProjectsPage object