nexus_get_user_by_name
Resolve an exact Nexus username to a full user profile and memberId. Returns user data or null when the username doesn't exist.
Instructions
Get a user profile by exact username via v2 GraphQL.
Unlike nexus_search_users (fuzzy), this resolves one exact username and fails cleanly when nobody has it. Useful to convert a username to a memberId for the user mutation tools.
Returns: JSON user object {memberId, name, avatar, modCount, kudos, joined, ...} or {userByName: null} when the username does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Exact Nexus username (case-sensitive), e.g. 'Talya1412'. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |