Create get usernames and followers operation
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-10-23 17:04:25 -06:00
parent f98c98ecdd
commit f573026853
2 changed files with 123 additions and 0 deletions

View File

@@ -57,6 +57,24 @@ query getUsernames(
getUsernames(matchString: $matchString, limit: $limit, after: $after)
}
query getUsernamesAndFollowing(
$userId: Int!
$matchString: String!
$limit: Int = null
$after: String = null
) {
getUsernamesAndFollowing(
userId: $userId
matchString: $matchString
limit: $limit
after: $after
) {
followers
following
usernames
}
}
query GetUserTags {
getUserTags {
id