feature/IO-3492-FCM-Queue-For-Notifications: Checkpoint

This commit is contained in:
Dave
2026-01-05 16:51:28 -05:00
parent 4190372b92
commit 4cdc15f70b
2 changed files with 260 additions and 75 deletions

View File

@@ -3187,3 +3187,12 @@ mutation INSERT_MEDIA_ANALYTICS($mediaObject: media_analytics_insert_input!) {
}
}
`;
exports.GET_USERS_FCM_TOKENS_BY_EMAILS = /* GraphQL */ `
query GET_USERS_FCM_TOKENS_BY_EMAILS($emails: [String!]!) {
users(where: { email: { _in: $emails } }) {
email
fcmtokens
}
}
`;