We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following query returns an empty array of items:
query Notifications { notifications(request: { where: { notificationTypes: [MENTIONED] } }) { items { ... on MirrorNotification { id } } } }
However, if the notificationTypes array includes any other type, it does return the mention notifications.
As a workaround, I duplicated the MENTIONED filter, which fixes the query:
query Notifications { notifications(request: { where: { notificationTypes: [MENTIONED, MENTIONED] } }) { items { ... on MirrorNotification { id } } } }
I can reproduce the issue on Mainnet V2. I'm using profile ID #108433.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following query returns an empty array of items:
However, if the notificationTypes array includes any other type, it does return the mention notifications.
As a workaround, I duplicated the MENTIONED filter, which fixes the query:
I can reproduce the issue on Mainnet V2. I'm using profile ID #108433.
The text was updated successfully, but these errors were encountered: