ENUM

SetEntityProfileImage

Settings that determine when to set a new entity identifier as the entity profile image.

link GraphQL Schema definition

1enum SetEntityProfileImage {
2
3# Do not update the entity profile image
4none
5
6# Set the the entity identifier URL as the entity profile image
7# only if there is no current profile image. Will cause an error
8# if the entity identifier type is not an image.
9ifNotSet
10
11# Set the entity identifier as the new entity profile image,
12# overwriting whatever value is present. Will cause an error
13# if the entity identifier type is not an image.
14always
15}