OBJECT

SolutionRepository

link GraphQL Schema definition

  • type SolutionRepository {
  • # Arguments
  • # entityId: ID of the entity to retrieve.
  • getById(entityId: ID!): SolutionEntity
  • # Arguments
  • # entityIds: IDs of the entities to retrieve.
  • getByIds(entityIds: [ID!]!): [SolutionEntity!]!
  • # Arguments
  • # limit: Number of entities to retrieve.
  • # offset: How many entities from beginning to skip.
  • # filter: Filtering criteria.
  • # orderBy: Ordering of the result set.
  • # includeDeleted: Returns deleted records as well. Default false.
  • getAll(
  • limit: Int,
  • offset: Int,
  • filter: SolutionFilterInput,
  • orderBy: [SolutionOrderByInput!],
  • includeDeleted: Boolean
  • ): [SolutionEntity!]!
  • # Arguments
  • # filter: filtering criteria.
  • # orderBy: Ordering of the result set.
  • # includeDeleted: [Not documented]
  • # 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.
  • getByCriteria(
  • filter: SolutionFilterInput,
  • orderBy: [SolutionOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): SolutionEntityConnection
  • # Arguments
  • # id: [Not documented]
  • # revision: [Not documented]
  • getChangedFieldsSinceRevision(
  • id: UUID!,
  • revision: Int!
  • ): [UUID!]!
  • # Arguments
  • # listingOptions: [Not documented]
  • # filter: [Not documented]
  • # orderBy: [Not documented]
  • # 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.
  • getBySolutionCriteria(
  • listingOptions: SolutionTabDataGridViewOptionsParams!,
  • filter: SolutionFilterInput,
  • orderBy: [SolutionOrderByInput!],
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): SolutionEntityConnection
  • # Arguments
  • # settings: The canvas to evaluate (the editor's current,
  • # possibly unsaved state).
  • # nodeIds: Canvas node ids to evaluate.
  • nodeStatus(settings: SolutionSchemaJSONString!, nodeIds: [UUID!]!): [SolutionNodeStatusResult!]!
  • # Arguments
  • # settings: The canvas to scan (the editor's current, possibly
  • # unsaved state).
  • # nodeId: Canvas node id to scan; omit to rescan the whole
  • # canvas.
  • # addRecordIds: Indirect-candidate records of the scanned node to
  • # add
  • # (the picker confirmation). Requires node_id.
  • scan(settings: SolutionSchemaJSONString!, nodeId: UUID, addRecordIds: [UUID!]): SolutionScanResult!
  • }