Logo of FrontifyDeveloper portalArrow to the right
GraphQL reference
Interface

User

UserInterface for User returnable types.

Implemented by

An Interface is an abstract type that includes a certain set of fields that a type must include to implement the interface.Following types all implement this interface and must have all fields of this interface present.The __typename field resolves to a String which lets you differentiate different data types from each other on the client.

Type fields
id:ID!

User Id.

email:Email!
Deprecated

User email.

Removal: 1 Jul 2025 — use AccountUser.email instead
name:String

User name.

avatar:Url
Deprecated

User avatar.

Removal: 1 Jul 2025 — use AccountUser.avatar instead