OBJECT

MembersToCertificates

Relation table between Member and Certificate (m-n relation)

link GraphQL Schema definition

  • type MembersToCertificates {
  • # Unique identifier of the relation
  • id: Int!
  • # Start of the certificate validity
  • validSince: String!
  • # End of the certificate validity or null if validity is unlimited
  • validUntil: String
  • # Target member
  • member: Member!
  • # Target certificate
  • certificate: Certificate!
  • }