Skip to main content
Version: Beta

User

type User {
id: ID!
userId: Int!
username: String!
company: UserOrganisation!
sharingGroups: [SharingGroup!]!
sharingPersons: [UserSharee!]!
watchlists(
ids: [Int!]
): [Watchlist!]!
}

Fields

User.id ● ID! non-null scalar

AS numeric user id in string format @exposed

User.userId ● Int! non-null scalar

AS numeric user id @exposed(scopes: ['enterprise-only'])

User.username ● String! non-null scalar

Username of the user @exposed(scopes: ['enterprise-only'])

User.company ● UserOrganisation! non-null object

Company information of the user @exposed

User.sharingGroups ● [SharingGroup!]! non-null object

List of sharing groups @exposed

User.sharingPersons ● [UserSharee!]! non-null object

List of users available for sharing @exposed

User.watchlists ● [Watchlist!]! non-null object

Returns a list with the specified set of watchlists only if <ids> are provided. Returns all user's watchlists if <ids> is NOT provided. @exposed

User.watchlists.ids ● [Int!] list scalar

List of watchlist ids

Returned by

user query

Member of

CommonUserDocumentType object ● NoteDocumentType object ● UserDocumentType interface ● WebClipperDocumentType object