OBJECT

QuoteTypeRepository

link GraphQL Schema definition

  • type QuoteTypeRepository {
  • # Arguments
  • # entityId: ID of the entity to retrieve.
  • getById(entityId: ID!): QuoteTypeEntity
  • # Arguments
  • # entityIds: IDs of the entities to retrieve.
  • getByIds(entityIds: [ID!]!): [QuoteTypeEntity!]!
  • # 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.
  • getAll(
  • limit: Int,
  • offset: Int,
  • filter: QuoteTypeFilterInput,
  • orderBy: [QuoteTypeOrderByInput!],
  • includeDeleted: Boolean
  • ): [QuoteTypeEntity!]!
  • # 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.
  • getByCriteria(
  • filter: QuoteTypeFilterInput,
  • orderBy: [QuoteTypeOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): QuoteTypeEntityConnection
  • # 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.
  • getPublished(
  • limit: Int,
  • offset: Int,
  • filter: QuoteTypeFilterInput,
  • orderBy: [QuoteTypeOrderByInput!],
  • includeDeleted: Boolean
  • ): [QuoteTypeEntity!]!
  • # Arguments
  • # filter: [Not documented]
  • # orderBy: [Not documented]
  • getDrafts(
  • filter: QuoteTypeFilterInput,
  • orderBy: [QuoteTypeOrderByInput!]
  • ): [QuoteTypeEntity!]!
  • # Arguments
  • # entityId: [Not documented]
  • getDraftById(entityId: ID!): QuoteTypeEntity!
  • # Arguments
  • # quoteProcessId: [Not documented]
  • getByQuoteProcess(quoteProcessId: UUID!): QuoteTypeEntity
  • }