OBJECT
TaskRepository
link GraphQL Schema definition
- type TaskRepository {
 - # Arguments
 - #   entityId: ID of the entity to retrieve.
 - (: ID!): TaskEntity 
 - # Arguments
 - #   entityIds: IDs of the entities to retrieve.
 - (: [ID!]!): [TaskEntity!]! 
 - # 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,
 - : TaskFilterInput,
 - : [TaskOrderByInput!],
 - : Boolean
 - ): [TaskEntity!]! 
 - # 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.
 - (
 - : TaskFilterInput,
 - : [TaskOrderByInput!],
 - : Boolean,
 - : String,
 - : String,
 - : Int,
 - : Int
 - ): TaskEntityConnection 
 - # Arguments
 - #   id: [Not documented]
 - #   revision: [Not documented]
 - (
 - : UUID!,
 - : Int!
 - ): [UUID!]! 
 - # Arguments
 - #   includedIds: List of ids to include in result.
 - #   excludedIds: List of ids to exclude from result.
 - #   sessionId: Session to load ids from.
 - #   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.
 - (
 - : [UUID!]!,
 - : [UUID!]!,
 - : String!,
 - : String,
 - : String,
 - : Int,
 - : Int
 - ): TaskEntityConnection 
 - # Arguments
 - #   id: [Not documented]
 - #   fieldIds: [Not documented]
 - (: UUID!, : [UUID!]): JSONString 
 - # Arguments
 - #   mappingId: [Not documented]
 - #   entityId: [Not documented]
 - #   targetEntityTypeId: [Not documented]
 - (: UUID!, : UUID!, : UUID): TaskEntity! 
 - }