OBJECT

WorkDerivation

A record of a work being derived from the content of another work, through one or more derivation methods

link GraphQL Schema definition

  • type WorkDerivation {
  • # Methods by which the work is derived from its original, such as compilation and
  • # revised
  • derivationMethods: [WorkDerivationMethod!]!
  • # The work derived from the original work
  • derivedWork: Work!
  • # The unique Consonance identifier
  • id: Int
  • # The original work from which this work is derived
  • originalWork: Work!
  • # A number which specifies the nominal position of an original work in the derived
  • # work
  • sequenceNumber: Int
  • # The unique internal ID of the derived work
  • workId: Int!
  • }