INPUT_OBJECT
UserLogin
Input fields required by the userLogin mutation.
link GraphQL Schema definition
1 input UserLogin { 4 2 # The user login name -- typically, email address. 3 : String! 8 5 # The user password. Note that this value is only ever transmitted over 6 # the encrypted SSL protocol. 7 : String! 12 9 # GUID of organization. If not specified, it will be default to that of 10 # user's organization with lowest priority. 11 : ID 15 13 # Allow setting a vanity domain cookie with Samesite=None;Secure=true; 14 : Boolean 16 }