Files
hoppscotch/packages/hoppscotch-selfhost-web/src/api/queries/GetRootGQLUserCollections.graphql
2023-12-13 22:35:44 +05:30

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
}
}
}