16 lines
291 B
GraphQL
16 lines
291 B
GraphQL
query GetGQLRootUserCollections {
|
|
# the frontend doesnt paginate right now, so giving take a big enough value to get all collections at once
|
|
rootGQLUserCollections(take: 99999) {
|
|
id
|
|
title
|
|
type
|
|
data
|
|
childrenGQL {
|
|
id
|
|
title
|
|
type
|
|
data
|
|
}
|
|
}
|
|
}
|