OBJECT

UserAgreement

an user agreement to Vydia agreeing to a royalty split, contains information about the expiration

link GraphQL Schema definition

  • type UserAgreement {
  • # Date when the agreement was signed
  • activated_at: DateTime @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Relation to an agreement
  • agreement_id: ID! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Date when an agreement is going to expire
  • deactivated_at: DateTime @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • id: ID!
  • # Royalty Split ratio
  • split: Int!
  • # User who signed an agreement
  • user_id: ID!
  • }