userBadgeQuery constant
String
const userBadgeQuery
Implementation
static const String userBadgeQuery = '''
query getUserProfile(\$username: String!) {
matchedUser(username: \$username) {
badges {
id
displayName
icon
creationDate
}
upcomingBadges {
name
icon
}
activeBadge {
id
displayName
icon
creationDate
}
}
}
''';