ActType
Represents information about an act type.
type ActType {
id: ID!
name: String
group: TypeGroup
groupId: ID
sortOrder: Int
createdAt: DateTimeTz!
updatedAt: DateTimeTz!
deletedAt: DateTimeTz
}
Fields
ActType.id ● ID! non-null scalar
Act type's unique identifier.
ActType.name ● String scalar
The act type's name.
ActType.group ● TypeGroup object
The group this type belongs to.
ActType.groupId ● ID scalar
The identifier of the group this type belongs to.
ActType.sortOrder ● Int scalar
The order/placement of the type within its group.
ActType.createdAt ● DateTimeTz! non-null scalar
The date and time when the act type was created.
ActType.updatedAt ● DateTimeTz! non-null scalar
The date and time when the act type was last updated.
ActType.deletedAt ● DateTimeTz scalar
The date and time when the act type was deleted.
Returned By
actType query ● createActType mutation ● deleteActType mutation ● restoreActType mutation ● updateActType mutation
Member Of
Act object ● ActTypeEdge object