Arguments
collectionId
String!Required
The ID of the collection type.
collectionType
String!Required
Type of collection, i.e. products, brands, or collections.
Response
count
IntThe number of followers for the item. This count indicates how many users are following the specified item.
Query
1query followerCount($collectionId: String!, $collectionType: String!) {2 followerCount(collectionId: $collectionId, collectionType: $collectionType) {3 count4 }5}
Try it
Input Variables
1{2 "collectionId": "collectionId",3 "collectionType": "collectionType"4}
Response
1{2 "followerCount": {3 "count": 424 }5}
Was this section helpful?