1"""
2SubscriptionSet describes a set of subscriptions.
3"""
4type SubscriptionSet {
5  "Returns all subscriptions in the set. Optionally constrained"
6  entries(limit: Int = 50, offset: Int = 0): [SubscriptionOccurences!]!
7  "Returns all subscriptions in the set. Optinally constrained."
8  values(limit: Int = 50, offset: Int = 0): [String!]!
9  "Returns the number of values in the set."
10  size: Int
11}
12
13"""
14SubscriptionOccurences describes the number of occurrences of a subscription.
15"""
16type SubscriptionOccurences {
17  subscription: String!
18  occurrences: Int!
19}
20