OBJECT

SalesInvoicesQuery

link GraphQL Schema definition

  • type SalesInvoicesQuery {
  • # Requires access to resource GRAPHQL_SALES_QUOTE_REQUEST_SEE
  • #
  • # Arguments
  • # startTime: If not specified, current time will be used.
  • # endTime: If not specified, one month from startTime will be
  • # used.
  • # contacts: [Not documented]
  • findForContactsAndTimePeriod(
  • startTime: DateTime,
  • endTime: DateTime,
  • contacts: [ContactNid!]
  • ): SalesInvoices!
  • # Arguments
  • # limit: [Not documented]
  • getInvoicesTagsList(limit: Int): [Tag!]!
  • # Arguments
  • # invoiceType: [Not documented]
  • # invoiceNid: [Not documented]
  • getTagsForInvoice(
  • invoiceType: SalesInvoiceType!,
  • invoiceNid: Int!
  • ): [Tag!]!
  • # Arguments
  • # invoiceNo:
  • # documentTemplateId:
  • # quoteInvoiceNid:
  • isDuplicatedInvoiceNo(
  • invoiceNo: String!,
  • documentTemplateId: String!,
  • quoteInvoiceNid: Int
  • ): Boolean!
  • }