Skip to content

NamedAuditedNode ​

AuditedNode with a name and description

graphql
interface NamedAuditedNode implements AuditedNode, BaseNode, Named, Node {
  createdAt: DateTime!
  createdBy: User!
  description: String!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  lastModifiedAt: DateTime!
  lastModifiedBy: User!
  name: String!
}

Fields ​

NamedAuditedNode.createdAt ● DateTime! non-null scalar ​

The DateTime this entity was created at.

NamedAuditedNode.createdBy ● User! non-null interface ​

The User who created this entity.

NamedAuditedNode.description ● String! non-null scalar ​

The description of this entity.

NamedAuditedNode.hasPermission ● Boolean! non-null scalar ​

Checks if the current user has a specific permission on this Node

NamedAuditedNode.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

NamedAuditedNode.id ● ID! non-null scalar ​

The unique id of this node

NamedAuditedNode.lastModifiedAt ● DateTime! non-null scalar ​

The DateTime this entity was last modified at.

NamedAuditedNode.lastModifiedBy ● User! non-null interface ​

The User who last modified this entity.

NamedAuditedNode.name ● String! non-null scalar ​

The name of this entity.

Interfaces ​

AuditedNode interface ​

Node which provides auditing information, which can e.g. be used for the sync. When it was created and last modified, if the it is already deleted, and by who it was created and last modified. A modification is any change of a field on the node itself and a change of a relation (add or removed). A change on a related related node is not a modification.

BaseNode interface ​

Shared extensions to the node type.

Named interface ​

Entity with a name and a description.

Node interface ​

Base class of all nodes

Implemented By ​

Label object

Released under the MIT License.