-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
featL added misc, publications and post mutation
- Loading branch information
1 parent
0c19743
commit 659b7c1
Showing
8 changed files
with
1,066 additions
and
1,060 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
import { gql } from 'graphql-request'; | ||
|
||
export const FOLLOW_TAGS_MUTATION = gql` | ||
mutation followTags($input: FollowTagsInput!) { | ||
followTags(input: $input) { | ||
tags { | ||
id | ||
name | ||
slug | ||
logo | ||
tagline | ||
info { | ||
markdown | ||
mutation followTags($input: FollowTagsInput!) { | ||
followTags(input: $input) { | ||
tags { | ||
id | ||
name | ||
slug | ||
logo | ||
tagline | ||
info { | ||
markdown | ||
} | ||
followersCount | ||
postsCount | ||
} | ||
followersCount | ||
postsCount | ||
} | ||
} | ||
} | ||
` | ||
`; | ||
|
||
export const UNFOLLOW_TAGS_MUTATION = gql` | ||
mutation followTags($input: UnfollowTagsInput!) { | ||
unfollowTags(input: $input) { | ||
tags { | ||
id | ||
name | ||
slug | ||
logo | ||
tagline | ||
info { | ||
markdown | ||
mutation followTags($input: UnfollowTagsInput!) { | ||
unfollowTags(input: $input) { | ||
tags { | ||
id | ||
name | ||
slug | ||
logo | ||
tagline | ||
info { | ||
markdown | ||
} | ||
followersCount | ||
postsCount | ||
} | ||
followersCount | ||
postsCount | ||
} | ||
} | ||
} | ||
` | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.