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 attributes }
cursor { next }
}
}
projects(
organizationId: ID!
filter: ProjectsFilter
sort: ProjectsSort
cursor: Cursor
): ProjectsPage
Arguments
projects.organizationId ● ID! non-null scalar {#organization-id}
Your organization's unique identifier.
projects.filter ● ProjectsFilter input {#filter}
Optional filters to narrow results.
projects.sort ● ProjectsSort input {#sort}
How to sort results. Defaults to name ascending. When a search filter is active and no sort is provided, results are ranked by relevance.
projects.cursor ● Cursor input {#cursor}
Cursor from a previous page to fetch the next set of results.