OBJECT
ClientRepository
link GraphQL Schema definition
- type ClientRepository {
- # Arguments
- # entityId: ID of the entity to retrieve.
- (: ID!): ClientEntity
- # Arguments
- # entityIds: IDs of the entities to retrieve.
- (: [ID!]!): [ClientEntity!]!
- # 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,
- : ClientFilterInput,
- : [ClientOrderByInput!],
- : Boolean
- ): [ClientEntity!]!
- # 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.
- (
- : ClientFilterInput,
- : [ClientOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ClientEntityConnection
- # Arguments
- # id: [Not documented]
- # revision: [Not documented]
- (
- : UUID!,
- : Int!
- ): [UUID!]!
- : [String!]!
- # Arguments
- # name: [Not documented]
- (: String!): EntitySyncSettings
- # Arguments
- # name: [Not documented]
- (: String!): EntitySyncSettings
- # Arguments
- # serviceType: [Not documented]
- # flagToDelete: [Not documented]
- # flagOldFormat: [Not documented]
- # foreignIds: [Not documented]
- (
- : ServiceMappingType!,
- : Boolean!,
- : Int,
- : [String!]
- ): [EntityMapping!]!
- # Arguments
- # serviceType: [Not documented]
- # flagToDelete: [Not documented]
- # flagOldFormat: [Not documented]
- # foreignIds: [Not documented]
- (
- : ServiceMappingType!,
- : Boolean!,
- : Int,
- : [String!]
- ): [EntityMapping!]!
- # Arguments
- # serviceType: [Not documented]
- # flagToDelete: [Not documented]
- # flagOldFormat: [Not documented]
- # foreignIds: [Not documented]
- (
- : ServiceMappingType!,
- : Boolean!,
- : Int,
- : [String!]
- ): [EntityMapping!]!
- # Arguments
- # email: Email address of the Client.
- (: String!): ClientEntity
- # Arguments
- # invited: If false, omit those already invited.
- (: Boolean): [SupportUser!]!
- }