User
type User {
company: UserOrganisation!
watchlists(
ids: [Int!]
): [Watchlist!]!
}
Fields
User.company
● UserOrganisation!
non-null object
Company information of the user @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 scalarList of watchlist ids
Returned by
user
query