INPUT_OBJECT

UserLogin

Input fields required by the userLogin mutation.

link GraphQL Schema definition

1input UserLogin {
4
2# The user login name -- typically, email address.
3userName: String!
8
5# The user password. Note that this value is only ever transmitted over
6# the encrypted SSL protocol.
7password: String!
12
9# GUID of organization. If not specified, it will be default to that of
10# user's organization with lowest priority.
11organizationGuid: ID
13}