OBJECT
SolutionEntity
link GraphQL Schema definition
- type SolutionEntity {
- # 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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User who owns the solution.
- : ClientEntity
- # Template this solution was created from, if any.
- : SolutionTemplateEntity
- # Free-text description of the solution.
- : String
- # Name of the entity and its default text representation.
- : String!
- # Id of the owning user.
- : ID!
- # The saved canvas.
- : SolutionSchema
- # Template this solution was created from, if any.
- : ID
- # Number of nodes on the canvas.
- : Int
- # Live status derived from the activatable nodes (Automatizer, Email Sequence,
- # Online Form): Active when all are enabled, Inactive when none are, Partial
- # otherwise.
- : SolutionStatusEnum
- # Tags attached to the solution for organisation/filtering.
- #
- # Arguments
- # filter: Filter Tag relations by target Tag attributes.
- # filterEdge: Filter TagRelation relations by edge (relation)
- # TagRelation attributes.
- # orderBy: Order Tag relations by target Tag attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : TagFilterInput,
- : TagRelationFilterInput,
- : [TagOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): TagRelationEntityConnection
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Read-time usage statistics for the selected period, aggregated from the member
- # nodes' activity logs. Nothing is stored — every read recomputes.
- #
- # Arguments
- # period: [Not documented]
- (: SolutionStatsPeriodEnum!): SolutionStats!
- # Activity of the member tools, newest first: process runs, email-sequence runs
- # and online-form submissions (PLW-38986 §1.3). Forward-paginated (first/after;
- # first defaults to 50, cap 200) with keyset cursors, so a page fetch never loads
- # the whole history. Per-run visibility follows each tool's own activity log.
- #
- # Arguments
- # period: Limit the runs to the given period (default All).
- # before: [Not documented]
- # after: [Not documented]
- # first: [Not documented]
- # last: [Not documented]
- (
- : SolutionStatsPeriodEnum,
- : String,
- : String,
- : Int,
- : Int
- ): SolutionActivityLogConnection!
- }