OBJECT
SolutionRepository
link GraphQL Schema definition
- type SolutionRepository {
- # Arguments
- # entityId: ID of the entity to retrieve.
- (: ID!): SolutionEntity
- # Arguments
- # entityIds: IDs of the entities to retrieve.
- (: [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.
- (
- : Int,
- : Int,
- : SolutionFilterInput,
- : [SolutionOrderByInput!],
- : 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.
- (
- : SolutionFilterInput,
- : [SolutionOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): SolutionEntityConnection
- # Arguments
- # id: [Not documented]
- # revision: [Not documented]
- (
- : UUID!,
- : 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.
- (
- : SolutionTabDataGridViewOptionsParams!,
- : SolutionFilterInput,
- : [SolutionOrderByInput!],
- : String,
- : String,
- : Int,
- : Int
- ): SolutionEntityConnection
- # Arguments
- # settings: The canvas to evaluate (the editor's current,
- # possibly unsaved state).
- # nodeIds: Canvas node ids to evaluate.
- (: SolutionSchemaJSONString!, : [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.
- (: SolutionSchemaJSONString!, : UUID, : [UUID!]): SolutionScanResult!
- }