INPUT_OBJECT
UpdateClientInput
link GraphQL Schema definition
- input UpdateClientInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the default sales unit.
- : ID
- # Id of the assigned user role.
- : ID
- # Job title or position of the user.
- : String
- # Field whose values are strictly defined with an enumeration of values.
- : ClientTypeEnum
- # Revision when entity was lastly changed.
- : Int
- # Sales units the user belongs to (as member or manager).
- : [CreateSalesUnitClientRelationNoClientBackrefInput!]
- # Appointments marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Tasks marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Accounts marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Contacts marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Screen profiles marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Reports marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Leads marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- # Opportunities marked as favorite by the user.
- : [CreateClientFavoriteNoOwnerBackrefInput!]
- }