OBJECT

StringUserCustomFieldValue

User's custom field value of string type.

link GraphQL Schema definition

1type StringUserCustomFieldValue implements UserCustomFieldValue {
2
3# Custom field value ID.
4id: ID
5
6# Associated custom field.
7customField: CustomField
8
9# Can write boolean value.
10canWrite: Boolean
11
12valueString: String
13
14}

link Required by

This element is not required by anyone