userProfileQuery constant

String const userProfileQuery

Implementation

static const String userProfileQuery = '''
query getUserProfile(\$username: String!) {
  matchedUser(username: \$username) {
      username
      githubUrl
      twitterUrl
      linkedinUrl
      contributions {
          points
          questionCount
          testcaseCount
      }
      profile {
          realName
          userAvatar
          birthday
          ranking
          reputation
          websites
          countryName
          company
          school
          skillTags
          aboutMe
          starRating
      }
 }
}''';