OBJECT

AppointmentContactInviteesRelationEntity

link GraphQL Schema definition

  • type AppointmentContactInviteesRelationEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Appointment the contact has been invited to.
  • appointment: AppointmentEntity
  • # Coevera Contact record matching the invitee email, when one exists.
  • contact: ContactEntity
  • # Id of the appointment.
  • appointmentId: ID!
  • # Id of the matched contact.
  • contactId: ID
  • # Email address of the invitee. Required and used as the natural key for the link.
  • email: String!
  • # Given name of the invitee, when supplied.
  • firstName: String
  • # How the invitee was added (e.g. as a contact, free-form email, schedule
  • # booking).
  • inviteeType: AppointmentInviteeTypeEnum
  • # Family name of the invitee, when supplied.
  • lastName: String
  • # Invitee response (e.g. Accepted, Tentative, Declined, Pending).
  • response: InviteeResponseEnum
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }