OBJECT
InterfacePreviewRepository
link GraphQL Schema definition
- type InterfacePreviewRepository {
- # Arguments
- # entityId: ID of the entity to retrieve.
- (: ID!): InterfacePreviewEntity
- # Arguments
- # entityIds: IDs of the entities to retrieve.
- (: [ID!]!): [InterfacePreviewEntity!]!
- # 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,
- : InterfacePreviewFilterInput,
- : [InterfacePreviewOrderByInput!],
- : Boolean
- ): [InterfacePreviewEntity!]!
- # Arguments
- # filter: filtering criteria.
- # orderBy: Ordering of the result set.
- # includeDeleted: [Not documented]
- (
- : InterfacePreviewFilterInput,
- : [InterfacePreviewOrderByInput!],
- : Boolean
- ): [InterfacePreviewEntity!]!
- # 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,
- : InterfacePreviewFilterInput,
- : [InterfacePreviewOrderByInput!],
- : Boolean
- ): [InterfacePreviewEntity!]!
- # Arguments
- # filter: [Not documented]
- # orderBy: [Not documented]
- (
- : InterfacePreviewFilterInput,
- : [InterfacePreviewOrderByInput!]
- ): [InterfacePreviewEntity!]!
- # Arguments
- # entityId: [Not documented]
- (: ID!): InterfacePreviewEntity!
- }