OBJECT
CloudObjectRepository
link GraphQL Schema definition
- type CloudObjectRepository {
- # Arguments
- # entityId: ID of the entity to retrieve.
- (: ID!): CloudObjectEntity
- # Arguments
- # entityIds: IDs of the entities to retrieve.
- (: [ID!]!): [CloudObjectEntity!]!
- # Arguments
- # limit: [Not documented]
- # offset: [Not documented]
- # filter: [Not documented]
- # orderBy: [Not documented]
- # includeDeleted: [Not documented]
- # includeOwned: [Not documented]
- (
- : Int,
- : Int,
- : CloudObjectFilterInput,
- : [CloudObjectOrderByInput!],
- : Boolean,
- : Boolean
- ): [CloudObjectEntity!]!
- # Arguments
- # filter: [Not documented]
- # orderBy: [Not documented]
- # includeDeleted: [Not documented]
- # includeOwned: [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.
- (
- : CloudObjectFilterInput,
- : [CloudObjectOrderByInput!],
- : Boolean,
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): CloudObjectEntityConnection
- # Arguments
- # id: [Not documented]
- # revision: [Not documented]
- (
- : UUID!,
- : Int!
- ): [UUID!]!
- # Arguments
- # urls: List of urls to sign.
- # expireIn: Seconds for url expiration.
- (: [String!]!, : Int): [SignedUrl!]!
- # Arguments
- # processId: [Not documented]
- # entityIds: [Not documented]
- (: UUID!, : [UUID!]!): [CloudObjectEntity!]!
- # Arguments
- # emailSequenceId: [Not documented]
- # entityIds: [Not documented]
- (
- : UUID!,
- : [UUID!]!
- ): [CloudObjectEntity!]!
- # Arguments
- # reportScheduleId: [Not documented]
- # entityIds: [Not documented]
- (
- : UUID!,
- : [UUID!]!
- ): [CloudObjectEntity!]!
- # Arguments
- # approvalProcessId: [Not documented]
- # entityIds: [Not documented]
- (
- : UUID!,
- : [UUID!]!
- ): [CloudObjectEntity!]!
- # Arguments
- # fieldMappingId: [Not documented]
- # entityIds: [Not documented]
- (
- : UUID!,
- : [UUID!]!
- ): [CloudObjectEntity!]!
- # Arguments
- # entityId: [Not documented]
- (: UUID!): DocumentPreviewUrl!
- # 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
- ): CloudObjectEntityConnection
- # Arguments
- # onlineFormTypeId: [Not documented]
- # entityIds: [Not documented]
- (
- : UUID!,
- : [UUID!]!
- ): [CloudObjectEntity!]!
- }