> ## Documentation Index
> Fetch the complete documentation index at: https://docs.intelligence-management-platform.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Teams

> The team type represents a named group of users used for resource access control and budget scoping.

export const EditionBadge = ({edition}) => <Tooltip tip={edition === "ee" ? "Requires an Enterprise Edition license." : "Available in the Community Edition."}>
    <span style={{
  fontFamily: "RobotoMono, monospace",
  fontSize: "12px",
  textTransform: "uppercase",
  letterSpacing: "0.04em",
  border: "1px solid var(--imp-hair-light)",
  padding: "2px 8px"
}}>
      {edition === "ee" ? "Enterprise" : "Community"}
    </span>
  </Tooltip>;

<EditionBadge edition="ee" /> Teams require an Enterprise Edition license (`rbac` entitlement).

A `team` is a named group that can be granted access to agents, projects, prompts, and other resources via the RBAC system. Teams can also carry a shared spending budget. See [Users & access](/administration/users-access/overview).

```graphql theme={null}
type team {
  name: String!
  description: String
  last_processed_at: Date
  embeddings_updated_at: Date
  createdAt: Date
  updatedAt: Date
  budget: JSON
  id: ID!
}
```

## Field notes

| Field                   | Notes                                                                                    |
| ----------------------- | ---------------------------------------------------------------------------------------- |
| `budget`                | JSON budget envelope for spend limits applied to all users who are members of this team. |
| `last_processed_at`     | Timestamp of the last knowledge-embedding pass over this record.                         |
| `embeddings_updated_at` | Timestamp when vector embeddings were last regenerated.                                  |

## Example query

```graphql theme={null}
query {
  teamsPagination(
    limit: 20
    sort: { field: "name", direction: ASC }
  ) {
    items {
      id
      name
      description
      createdAt
    }
    pageInfo {
      currentPage
      hasNextPage
    }
  }
}
```
