Skip to main content

UserUpdateInput

Input object to update a User. Very similiar to User, but does not include sub and email is not required.

input UserUpdateInput {
address: String
birthdate: String
email: String
familyName: String
gender: String
givenName: String
locale: String
nickname: String
phone: String
picture: String
profile: String
userName: ID!
website: String
zoneinfo: String
}

Fields

UserUpdateInput.address ● String scalar

UserUpdateInput.birthdate ● String scalar

End-User's birthday, represented as an ISO 8601:2004 YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates.

UserUpdateInput.email ● String scalar

UserUpdateInput.familyName ● String scalar

UserUpdateInput.gender ● String scalar

UserUpdateInput.givenName ● String scalar

UserUpdateInput.locale ● String scalar

String representing the User's locale, i.e. 'en-us'

UserUpdateInput.nickname ● String scalar

The display name for the User

UserUpdateInput.phone ● String scalar

End-User's preferred telephone number. E.164 [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678.

UserUpdateInput.picture ● String scalar

URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User.

UserUpdateInput.profile ● String scalar

URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User.

UserUpdateInput.userName ● ID! non-null scalar

UserUpdateInput.website ● String scalar

URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with.

UserUpdateInput.zoneinfo ● String scalar

Timezone - String from zoneinfo time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles.

Member of

updateUser mutation