OBJECT

ContactsChanges

Contact created, modified or deleted in selected period

link GraphQL Schema definition

  • type ContactsChanges {
  • # Contacts created.
  • # Requires access to resource GRAPHQL_CONTACT
  • created: [Contact!]!
  • # Contacts changed.
  • # Requires access to resource GRAPHQL_CONTACT
  • changed: [Contact!]!
  • # Contacts deleted (contactNid)
  • deleted: [Int!]!
  • # Contacts data extraction UTC timestamp
  • timestamp: Int!
  • }