feat: implement collections syncing for selfhosted (#42)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
subscription UserCollectionCreated {
|
||||
userCollectionCreated {
|
||||
parent {
|
||||
id
|
||||
}
|
||||
id
|
||||
title
|
||||
type
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
subscription UserCollectionMoved {
|
||||
userCollectionMoved {
|
||||
id
|
||||
parent {
|
||||
id
|
||||
}
|
||||
type
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
subscription UserCollectionOrderUpdated {
|
||||
userCollectionOrderUpdated {
|
||||
userCollection {
|
||||
id
|
||||
parent {
|
||||
id
|
||||
}
|
||||
}
|
||||
|
||||
nextUserCollection {
|
||||
id
|
||||
parent {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
subscription UserCollectionRemoved {
|
||||
userCollectionRemoved {
|
||||
id
|
||||
type
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
subscription userCollectionUpdated {
|
||||
userCollectionUpdated {
|
||||
id
|
||||
title
|
||||
type
|
||||
parent {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
subscription UserRequestCreated {
|
||||
userRequestCreated {
|
||||
id
|
||||
collectionID
|
||||
title
|
||||
request
|
||||
type
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
subscription UserRequestDeleted {
|
||||
userRequestDeleted {
|
||||
id
|
||||
collectionID
|
||||
title
|
||||
request
|
||||
type
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
subscription UserRequestMoved {
|
||||
userRequestMoved {
|
||||
request {
|
||||
id
|
||||
collectionID
|
||||
type
|
||||
}
|
||||
nextRequest {
|
||||
id
|
||||
collectionID
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
subscription UserRequestUpdated {
|
||||
userRequestUpdated {
|
||||
id
|
||||
collectionID
|
||||
title
|
||||
request
|
||||
type
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user