Skip to content

Commit

Permalink
Merge pull request #35 from parameter1/omeda-unreal-clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
zarathustra323 authored Jun 2, 2023
2 parents 6227e41 + 00454ea commit e1bfcdd
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion services/graphql/src/definitions/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,33 @@ type EmailDeploymentClickLink {
totalClicks: Int! @apiValue
linkURL: String! @apiValue
clicks: [EmailDeploymentClickInfo!]! @apiValue(path: "clicks", as: ARRAY)
unrealClicks: [EmailDeploymentUnrealClickInfo!]! @apiValue(path: "unrealClicks", as: ARRAY)
}
type EmailDeploymentUnrealClickInfo {
firstName: String @apiValue
lastName: String @apiValue
customerId: Int @apiValue
encryptedCustomerId: String @apiValue
emailAddress: String! @apiValue
keyword: String @apiValue
category: String @apiValue
categoryValue: String @apiValue
reasons: [EmailDeploymentUnrealClickReason!]! @apiValue(path: "UnrealClicks", as: ARRAY)
}
type EmailDeploymentUnrealClickReason {
numberOfUnrealClicks: Int! @apiValue
clickDate: DateTime! @apiValue
reason: Int! @apiValue
}
type EmailDeploymentClickInfo {
numberOfClicks: Int! @apiValue
clickDate: DateTime! @apiValue
firstName: String @apiValue
lastName: String @apiValue
customerId: String @apiValue
customerId: Int @apiValue
encryptedCustomerId: String @apiValue
emailAddress: String! @apiValue
keyword: String @apiValue
Expand Down

0 comments on commit e1bfcdd

Please sign in to comment.