Created
July 9, 2019 06:54
-
-
Save anoobbava/4b33d6e2b1c260ed86e320e56196db0c to your computer and use it in GitHub Desktop.
blog for github graphql
This file contains hidden or 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
| //src/queries/trendingRepoDetailsQuery.js | |
| import gql from 'graphql-tag' | |
| export const TRENDING_REPO_DETAILS_QUERY = gql` | |
| query SearchMostTop10Star($queryString: String!) { | |
| search(query: $queryString, type: REPOSITORY, first: 40) { | |
| edges { | |
| node { | |
| ... on Repository { | |
| owner { | |
| avatarUrl | |
| url | |
| } | |
| name | |
| stargazers { | |
| totalCount | |
| } | |
| forks { | |
| totalCount | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment