feat: implement user history syncing for selfhost (#60)

This commit is contained in:
Akash K
2023-04-01 18:24:58 +05:30
committed by GitHub
parent 2b44ede92b
commit 8586ced3cc
13 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
query GetRESTUserHistory {
me {
RESTHistory {
id
userUid
reqType
request
responseMetadata
isStarred
executedOn
}
GQLHistory {
id
userUid
reqType
request
responseMetadata
isStarred
executedOn
}
}
}