INPUT_OBJECT

LocalUserInput

link GraphQL Schema definition

  • input LocalUserInput {
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • loginId: String!
  • # Login password, should be hashed
  • loginPasswordHash: String!
  • lastName: String
  • passwordRepositoryName: String
  • enabled: Boolean!
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientMutationId: String
  • firstName: String
  • displayName: String
  • description: String
  • # Password hash type, where 0 is SHA1 non-reversable, 1 is PKCS5 reversable
  • loginPasswordHashType: Int
  • }