* Remove gun+horse streak * Add wallet badges * Fix empty recv wallet detected as enabled * Resolve badges via columns and triggers * Fix backwards compatibility by not dropping GQL fields * Gun+horse notifications as streaks via triggers * Fix error while computing streaks * Push notifications for horse+gun * Move logic to JS via pgboss job * Fix argument to notifyNewStreak * Update checkWallet comment * Refactor notification id hack * Formatting * Fix missing update of possibleTypes This didn't cause any bugs because the added types have no field resolvers. * Add user migration * Fix missing cast to date * Run checkWallet queries inside transaction
231 lines
4.3 KiB
JavaScript
231 lines
4.3 KiB
JavaScript
import { gql } from '@apollo/client'
|
|
import { ITEM_FULL_FIELDS, POLL_FIELDS } from './items'
|
|
import { INVITE_FIELDS } from './invites'
|
|
import { SUB_FIELDS } from './subs'
|
|
import { INVOICE_FIELDS } from './wallet'
|
|
|
|
export const HAS_NOTIFICATIONS = gql`{ hasNewNotes }`
|
|
|
|
export const INVOICIFICATION = gql`
|
|
${ITEM_FULL_FIELDS}
|
|
${POLL_FIELDS}
|
|
${INVOICE_FIELDS}
|
|
fragment InvoicificationFields on Invoicification {
|
|
id
|
|
sortTime
|
|
invoice {
|
|
...InvoiceFields
|
|
item {
|
|
...ItemFullFields
|
|
...PollFields
|
|
}
|
|
itemAct {
|
|
id
|
|
act
|
|
invoice {
|
|
id
|
|
actionState
|
|
}
|
|
}
|
|
}
|
|
}`
|
|
|
|
export const NOTIFICATIONS = gql`
|
|
${INVOICIFICATION}
|
|
${INVITE_FIELDS}
|
|
${SUB_FIELDS}
|
|
|
|
query Notifications($cursor: String, $inc: String) {
|
|
notifications(cursor: $cursor, inc: $inc) {
|
|
cursor
|
|
lastChecked
|
|
notifications {
|
|
__typename
|
|
... on Mention {
|
|
id
|
|
sortTime
|
|
mention
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on ItemMention {
|
|
id
|
|
sortTime
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on Votification {
|
|
id
|
|
sortTime
|
|
earnedSats
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on Revenue {
|
|
id
|
|
sortTime
|
|
earnedSats
|
|
subName
|
|
}
|
|
... on ForwardedVotification {
|
|
id
|
|
sortTime
|
|
earnedSats
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on CowboyHat {
|
|
id
|
|
sortTime
|
|
days
|
|
}
|
|
... on NewHorse {
|
|
id
|
|
sortTime
|
|
}
|
|
... on LostHorse {
|
|
id
|
|
sortTime
|
|
}
|
|
... on NewGun {
|
|
id
|
|
sortTime
|
|
}
|
|
... on LostGun {
|
|
id
|
|
sortTime
|
|
}
|
|
... on Earn {
|
|
id
|
|
sortTime
|
|
minSortTime
|
|
earnedSats
|
|
sources {
|
|
posts
|
|
comments
|
|
tipPosts
|
|
tipComments
|
|
}
|
|
}
|
|
... on ReferralReward {
|
|
id
|
|
sortTime
|
|
earnedSats
|
|
sources {
|
|
forever
|
|
oneDay
|
|
}
|
|
}
|
|
... on Referral {
|
|
id
|
|
sortTime
|
|
source {
|
|
__typename
|
|
... on Item {
|
|
...ItemFullFields
|
|
}
|
|
... on Sub {
|
|
...SubFields
|
|
}
|
|
... on User {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
... on Reply {
|
|
id
|
|
sortTime
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on FollowActivity {
|
|
id
|
|
sortTime
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on TerritoryPost {
|
|
id
|
|
sortTime
|
|
item {
|
|
...ItemFullFields
|
|
text
|
|
}
|
|
}
|
|
... on TerritoryTransfer {
|
|
id
|
|
sortTime
|
|
sub {
|
|
...SubFields
|
|
}
|
|
}
|
|
... on Invitification {
|
|
id
|
|
sortTime
|
|
invite {
|
|
...InviteFields
|
|
}
|
|
}
|
|
... on JobChanged {
|
|
id
|
|
sortTime
|
|
item {
|
|
...ItemFields
|
|
}
|
|
}
|
|
... on SubStatus {
|
|
id
|
|
sortTime
|
|
sub {
|
|
...SubFields
|
|
}
|
|
}
|
|
... on InvoicePaid {
|
|
id
|
|
sortTime
|
|
earnedSats
|
|
invoice {
|
|
id
|
|
nostr
|
|
comment
|
|
lud18Data
|
|
actionType
|
|
forwardedSats
|
|
}
|
|
}
|
|
... on Invoicification {
|
|
...InvoicificationFields
|
|
}
|
|
... on WithdrawlPaid {
|
|
id
|
|
sortTime
|
|
earnedSats
|
|
withdrawl {
|
|
autoWithdraw
|
|
satsFeePaid
|
|
forwardedActionType
|
|
}
|
|
}
|
|
... on Reminder {
|
|
id
|
|
sortTime
|
|
item {
|
|
...ItemFullFields
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} `
|