feat: implement user history syncing for selfhost (#60)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
subscription UserHistoryCreated {
|
||||
userHistoryCreated {
|
||||
id
|
||||
reqType
|
||||
request
|
||||
responseMetadata
|
||||
isStarred
|
||||
executedOn
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
subscription userHistoryDeleted {
|
||||
userHistoryDeleted {
|
||||
id
|
||||
reqType
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
subscription UserHistoryDeletedMany {
|
||||
userHistoryDeletedMany {
|
||||
count
|
||||
reqType
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
subscription UserHistoryUpdated {
|
||||
userHistoryUpdated {
|
||||
id
|
||||
reqType
|
||||
request
|
||||
responseMetadata
|
||||
isStarred
|
||||
executedOn
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user