OBJECT

GratisCopy

A gratis copy record, showing the product, contact, number of copies, send and sent dates, and notes

link GraphQL Schema definition

  • type GratisCopy {
  • # The associated contact
  • contact: Contact!
  • # The id of the associated contact
  • contactId: Int!
  • # The associated contract for this gratis copy
  • contract: Contract!
  • # The id of the associated contract for this gratis copy
  • contractId: Int!
  • # The unique Consonance identifier
  • id: Int!
  • # Any notes regarding the gratis copies
  • note: String
  • # The number of gratis copies to send
  • numberOfCopies: Int!
  • # The id of the associated product
  • productId: Int!
  • # The date on which the gratis copies should be sent
  • sendOn: ISO8601Date
  • # The date the gratis copies were sent
  • sentOn: ISO8601Date
  • }