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

# User Subgraph Reference

> Technical reference for the su-user subgraph providing user management.

# User Subgraph Reference

The `su-user` subgraph provides user profile and management capabilities.

## Subgraph Information

* **Name**: `su-user`
* **Routing URL**: `https://a4g6fd62uk.execute-api.us-west-2.amazonaws.com/poc/graphql`
* **Last Updated**: 2025-06-23
* **SDL**: [View Schema](../schemas/sdl/su-user.graphql)

## Overview

User profiles, permissions, and account management.

## Root Query Fields

```graphql theme={null}
extend type Query {
  userGroups: [UserGroup!]
  userConsentDocuments: [ConsentDocument!]
  me: User
  users: [User!]
  issueUserAssignees: [User!]
}
```

## Root Mutation Fields

```graphql theme={null}
extend type Mutation {
  updateGroup(input: UpdateGroupInput!): UpdateGroupMutationResult!
  updateUserMeConsent(input: UpdateUserMeConsentInput!): UpdateUserMeConsentMutationResult!
  createUser(input: CreateUserInput!): UserMutationResult!
  updateUser(input: UpdateUserInput!): UserMutationResult!
  updateUserPreference(input: UpdateUserPreferenceInput!): UserMutationResult!
  updateUserRegisterNotificationToken(input: UpdateUserNotificationTokenInput!): UserMutationResult!
  updateUserUnregisterNotificationToken(input: UpdateUserNotificationTokenInput!): UserMutationResult!
  deleteUser(input: DeleteUserInput!): UserMutationResult!
  loginMe: UserMutationResult!
}
```

## Related Resources

* **[Authentication Guide](../authentication)** - User authentication
* **[Full SDL Schema](../schemas/sdl/su-user.graphql)** - Complete type definitions
