OBJECT

StepEntity

link GraphQL Schema definition

  • type StepEntity {
  • # 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.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • leadProcess: LeadProcessEntity
  • pipeline: PipelineEntity
  • quoteProcess: QuoteProcessEntity
  • # Multi-line text input field.
  • description: String
  • # Boolean value.
  • hasReadonlyForm: Boolean
  • # Boolean value.
  • hasVersionIncrement: Boolean
  • # Relation to single entity instance.
  • leadProcessId: ID
  • # Name of the entity and its default text representation.
  • name: String!
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • percent: Int
  • # Relation to single entity instance.
  • pipelineId: ID
  • # Relation to single entity instance.
  • quoteProcessId: ID
  • sortOrder: Int!
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • timeframe: Int
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Relations to CloudObjects.
  • #
  • # Arguments
  • # filter: Filter CloudObject relations by target CloudObject
  • # attributes.
  • # filterEdge: Filter CloudObjectStepRelation relations by edge
  • # (relation) CloudObjectStepRelation attributes.
  • # orderBy: Order CloudObject relations by target CloudObject
  • # 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.
  • documents(
  • filter: CloudObjectFilterInput,
  • filterEdge: CloudObjectStepRelationFilterInput,
  • orderBy: [CloudObjectOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): CloudObjectStepRelationEntityConnection
  • # Relations to StepChecklists.
  • #
  • # Arguments
  • # filter: Filter StepChecklist relations by target StepChecklist
  • # attributes.
  • # orderBy: Order StepChecklist relations by target StepChecklist
  • # 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.
  • stepChecklists(
  • filter: StepChecklistFilterInput,
  • orderBy: [StepChecklistOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): StepChecklistEntityConnection
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }