OBJECT

ApiAccessEntity

link GraphQL Schema definition

  • type ApiAccessEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity. Must match with Application id.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Email address.
  • email: String
  • # Boolean value.
  • isActive: Boolean
  • # Datetime information.
  • lastUsed: DateTime
  • # Field containing json.
  • permissions: ApiAccessPermissions
  • # Field whose values are strictly defined with an enumeration of values.
  • type: ApiAccessTypeEnum!
  • # Name for the api access.
  • name: String
  • # Formerly API Access.
  • username: String
  • # Formerly API Password. Only available during create or for migrated legacy
  • # access. Otherwise, it is null.
  • plainPassword: String
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }