INTERFACE

User

A generic user interface. A user could be either an agent or visitor.

link GraphQL Schema definition

1interface User {
2
3# The display name of the user.
4display_name: String
5
6# Globally unique identifier.
7id: ID!
8
9}