OBJECT
ClientFavoriteRepository
link GraphQL Schema definition
- type ClientFavoriteRepository {
- # Arguments
- # entityId: ID of the entity to retrieve.
- ID!): ClientFavoriteEntity ( :
- # Arguments
- # entityIds: IDs of the entities to retrieve.
- ID!]!): [ClientFavoriteEntity!]! ( : [
- # 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, :
- ClientFavoriteFilterInput, :
- ClientFavoriteOrderByInput!], : [
- Boolean :
- ): [ClientFavoriteEntity!]!
- # 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.
- (
- ClientFavoriteFilterInput, :
- ClientFavoriteOrderByInput!], : [
- Boolean, :
- String, :
- String, :
- Int, :
- Int :
- ): ClientFavoriteEntityConnection
- # Arguments
- # id: [Not documented]
- # revision: [Not documented]
- (
- UUID!, :
- Int! :
- ): [UUID!]!
- # Arguments
- # ownerId: [Not documented]
- # accountId: [Not documented]
- # activityId: [Not documented]
- # contactId: [Not documented]
- # leadOpptyId: [Not documented]
- # profileId: [Not documented]
- # reportId: [Not documented]
- # quoteId: [Not documented]
- (
- UUID, :
- UUID, :
- UUID, :
- UUID, :
- UUID, :
- UUID, :
- UUID, :
- UUID :
- ): Boolean!
- }