From e3b050b5a2309bfdd602c6a5b9853fc1d89feea9 Mon Sep 17 00:00:00 2001 From: Rongjian Zhang Date: Sat, 4 Jan 2020 15:28:49 +0800 Subject: [PATCH] chore: remove unused query --- build.yaml | 5 - lib/graphql/github_me.dart | 565 ---------------------------------- lib/graphql/github_me.g.dart | 313 ------------------- lib/graphql/github_me.graphql | 34 -- 4 files changed, 917 deletions(-) delete mode 100644 lib/graphql/github_me.dart delete mode 100644 lib/graphql/github_me.g.dart delete mode 100644 lib/graphql/github_me.graphql diff --git a/build.yaml b/build.yaml index 2531091..91a751c 100644 --- a/build.yaml +++ b/build.yaml @@ -54,11 +54,6 @@ targets: queries_glob: lib/graphql/github_commits.graphql resolve_type_field: __typename add_query_prefix: true - - schema: lib/github.schema.json - output: lib/graphql/github_me.dart - queries_glob: lib/graphql/github_me.graphql - resolve_type_field: __typename - add_query_prefix: true scalar_mapping: - graphql_type: URI dart_type: String diff --git a/lib/graphql/github_me.dart b/lib/graphql/github_me.dart deleted file mode 100644 index a4ab480..0000000 --- a/lib/graphql/github_me.dart +++ /dev/null @@ -1,565 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -import 'package:artemis/artemis.dart'; -import 'package:json_annotation/json_annotation.dart'; -import 'package:equatable/equatable.dart'; -import 'package:gql/ast.dart'; -part 'github_me.g.dart'; - -@JsonSerializable(explicitToJson: true) -class GithubMe with EquatableMixin { - GithubMe(); - - factory GithubMe.fromJson(Map json) => - _$GithubMeFromJson(json); - - GithubMeUser viewer; - - @override - List get props => [viewer]; - Map toJson() => _$GithubMeToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeUser extends GithubMeAuditEntryActor - with EquatableMixin - implements - GithubMeNode, - GithubMeActor, - GithubMeRegistryPackageOwner, - GithubMeRegistryPackageSearch, - GithubMeProjectOwner, - GithubMeRepositoryOwner, - GithubMeUniformResourceLocatable, - GithubMeProfileOwner, - GithubMeSponsorable { - GithubMeUser(); - - factory GithubMeUser.fromJson(Map json) => - _$GithubMeUserFromJson(json); - - @override - String login; - - @override - String avatarUrl; - - @override - String url; - - @override - String name; - - String bio; - - String company; - - @override - String location; - - @override - String email; - - @override - String websiteUrl; - - GithubMeStarredRepositoryConnection starredRepositories; - - GithubMeFollowerConnection followers; - - GithubMeFollowingConnection following; - - @override - GithubMeRepositoryConnection repositories; - - GithubMeContributionsCollection contributionsCollection; - - @override - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [ - login, - avatarUrl, - url, - name, - bio, - company, - location, - email, - websiteUrl, - starredRepositories, - followers, - following, - repositories, - contributionsCollection, - resolveType - ]; - Map toJson() => _$GithubMeUserToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeStarredRepositoryConnection with EquatableMixin { - GithubMeStarredRepositoryConnection(); - - factory GithubMeStarredRepositoryConnection.fromJson( - Map json) => - _$GithubMeStarredRepositoryConnectionFromJson(json); - - int totalCount; - - @override - List get props => [totalCount]; - Map toJson() => - _$GithubMeStarredRepositoryConnectionToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeFollowerConnection with EquatableMixin { - GithubMeFollowerConnection(); - - factory GithubMeFollowerConnection.fromJson(Map json) => - _$GithubMeFollowerConnectionFromJson(json); - - int totalCount; - - @override - List get props => [totalCount]; - Map toJson() => _$GithubMeFollowerConnectionToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeFollowingConnection with EquatableMixin { - GithubMeFollowingConnection(); - - factory GithubMeFollowingConnection.fromJson(Map json) => - _$GithubMeFollowingConnectionFromJson(json); - - int totalCount; - - @override - List get props => [totalCount]; - Map toJson() => _$GithubMeFollowingConnectionToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeRepositoryConnection with EquatableMixin { - GithubMeRepositoryConnection(); - - factory GithubMeRepositoryConnection.fromJson(Map json) => - _$GithubMeRepositoryConnectionFromJson(json); - - int totalCount; - - @override - List get props => [totalCount]; - Map toJson() => _$GithubMeRepositoryConnectionToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeContributionsCollection with EquatableMixin { - GithubMeContributionsCollection(); - - factory GithubMeContributionsCollection.fromJson(Map json) => - _$GithubMeContributionsCollectionFromJson(json); - - GithubMeContributionCalendar contributionCalendar; - - @override - List get props => [contributionCalendar]; - Map toJson() => - _$GithubMeContributionsCollectionToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeContributionCalendar with EquatableMixin { - GithubMeContributionCalendar(); - - factory GithubMeContributionCalendar.fromJson(Map json) => - _$GithubMeContributionCalendarFromJson(json); - - List weeks; - - @override - List get props => [weeks]; - Map toJson() => _$GithubMeContributionCalendarToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeContributionCalendarWeek with EquatableMixin { - GithubMeContributionCalendarWeek(); - - factory GithubMeContributionCalendarWeek.fromJson( - Map json) => - _$GithubMeContributionCalendarWeekFromJson(json); - - List contributionDays; - - @override - List get props => [contributionDays]; - Map toJson() => - _$GithubMeContributionCalendarWeekToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeContributionCalendarDay with EquatableMixin { - GithubMeContributionCalendarDay(); - - factory GithubMeContributionCalendarDay.fromJson(Map json) => - _$GithubMeContributionCalendarDayFromJson(json); - - String color; - - @override - List get props => [color]; - Map toJson() => - _$GithubMeContributionCalendarDayToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeAuditEntryActor with EquatableMixin { - GithubMeAuditEntryActor(); - - factory GithubMeAuditEntryActor.fromJson(Map json) => - _$GithubMeAuditEntryActorFromJson(json); - - @override - List get props => []; - Map toJson() => _$GithubMeAuditEntryActorToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeNode with EquatableMixin { - GithubMeNode(); - - factory GithubMeNode.fromJson(Map json) => - _$GithubMeNodeFromJson(json); - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [resolveType]; - Map toJson() => _$GithubMeNodeToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeActor with EquatableMixin { - GithubMeActor(); - - factory GithubMeActor.fromJson(Map json) => - _$GithubMeActorFromJson(json); - - String login; - - String avatarUrl; - - String url; - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [login, avatarUrl, url, resolveType]; - Map toJson() => _$GithubMeActorToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeRegistryPackageOwner with EquatableMixin { - GithubMeRegistryPackageOwner(); - - factory GithubMeRegistryPackageOwner.fromJson(Map json) => - _$GithubMeRegistryPackageOwnerFromJson(json); - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [resolveType]; - Map toJson() => _$GithubMeRegistryPackageOwnerToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeRegistryPackageSearch with EquatableMixin { - GithubMeRegistryPackageSearch(); - - factory GithubMeRegistryPackageSearch.fromJson(Map json) => - _$GithubMeRegistryPackageSearchFromJson(json); - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [resolveType]; - Map toJson() => _$GithubMeRegistryPackageSearchToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeProjectOwner with EquatableMixin { - GithubMeProjectOwner(); - - factory GithubMeProjectOwner.fromJson(Map json) => - _$GithubMeProjectOwnerFromJson(json); - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [resolveType]; - Map toJson() => _$GithubMeProjectOwnerToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeRepositoryOwner with EquatableMixin { - GithubMeRepositoryOwner(); - - factory GithubMeRepositoryOwner.fromJson(Map json) => - _$GithubMeRepositoryOwnerFromJson(json); - - String login; - - String avatarUrl; - - String url; - - GithubMeRepositoryConnection repositories; - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [login, avatarUrl, url, repositories, resolveType]; - Map toJson() => _$GithubMeRepositoryOwnerToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeUniformResourceLocatable with EquatableMixin { - GithubMeUniformResourceLocatable(); - - factory GithubMeUniformResourceLocatable.fromJson( - Map json) => - _$GithubMeUniformResourceLocatableFromJson(json); - - String url; - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [url, resolveType]; - Map toJson() => - _$GithubMeUniformResourceLocatableToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeProfileOwner with EquatableMixin { - GithubMeProfileOwner(); - - factory GithubMeProfileOwner.fromJson(Map json) => - _$GithubMeProfileOwnerFromJson(json); - - String login; - - String name; - - String location; - - String email; - - String websiteUrl; - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => - [login, name, location, email, websiteUrl, resolveType]; - Map toJson() => _$GithubMeProfileOwnerToJson(this); -} - -@JsonSerializable(explicitToJson: true) -class GithubMeSponsorable with EquatableMixin { - GithubMeSponsorable(); - - factory GithubMeSponsorable.fromJson(Map json) => - _$GithubMeSponsorableFromJson(json); - - @JsonKey(name: '__typename') - String resolveType; - - @override - List get props => [resolveType]; - Map toJson() => _$GithubMeSponsorableToJson(this); -} - -class GithubMeQuery extends GraphQLQuery { - GithubMeQuery(); - - @override - final DocumentNode document = DocumentNode(definitions: [ - OperationDefinitionNode( - type: OperationType.query, - name: null, - variableDefinitions: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'viewer'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'login'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'avatarUrl'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'url'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'name'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'bio'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'company'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'location'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'email'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'websiteUrl'), - alias: null, - arguments: [], - directives: [], - selectionSet: null), - FieldNode( - name: NameNode(value: 'starredRepositories'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'totalCount'), - alias: null, - arguments: [], - directives: [], - selectionSet: null) - ])), - FieldNode( - name: NameNode(value: 'followers'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'totalCount'), - alias: null, - arguments: [], - directives: [], - selectionSet: null) - ])), - FieldNode( - name: NameNode(value: 'following'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'totalCount'), - alias: null, - arguments: [], - directives: [], - selectionSet: null) - ])), - FieldNode( - name: NameNode(value: 'repositories'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'totalCount'), - alias: null, - arguments: [], - directives: [], - selectionSet: null) - ])), - FieldNode( - name: NameNode(value: 'contributionsCollection'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'contributionCalendar'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'weeks'), - alias: null, - arguments: [], - directives: [], - selectionSet: SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'contributionDays'), - alias: null, - arguments: [], - directives: [], - selectionSet: - SelectionSetNode(selections: [ - FieldNode( - name: NameNode(value: 'color'), - alias: null, - arguments: [], - directives: [], - selectionSet: null) - ])) - ])) - ])) - ])) - ])) - ])) - ]); - - @override - final String operationName = 'github_me'; - - @override - List get props => [document, operationName]; - @override - GithubMe parse(Map json) => GithubMe.fromJson(json); -} diff --git a/lib/graphql/github_me.g.dart b/lib/graphql/github_me.g.dart deleted file mode 100644 index 0517159..0000000 --- a/lib/graphql/github_me.g.dart +++ /dev/null @@ -1,313 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'github_me.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -GithubMe _$GithubMeFromJson(Map json) { - return GithubMe() - ..viewer = json['viewer'] == null - ? null - : GithubMeUser.fromJson(json['viewer'] as Map); -} - -Map _$GithubMeToJson(GithubMe instance) => { - 'viewer': instance.viewer?.toJson(), - }; - -GithubMeUser _$GithubMeUserFromJson(Map json) { - return GithubMeUser() - ..login = json['login'] as String - ..avatarUrl = json['avatarUrl'] as String - ..url = json['url'] as String - ..name = json['name'] as String - ..bio = json['bio'] as String - ..company = json['company'] as String - ..location = json['location'] as String - ..email = json['email'] as String - ..websiteUrl = json['websiteUrl'] as String - ..starredRepositories = json['starredRepositories'] == null - ? null - : GithubMeStarredRepositoryConnection.fromJson( - json['starredRepositories'] as Map) - ..followers = json['followers'] == null - ? null - : GithubMeFollowerConnection.fromJson( - json['followers'] as Map) - ..following = json['following'] == null - ? null - : GithubMeFollowingConnection.fromJson( - json['following'] as Map) - ..repositories = json['repositories'] == null - ? null - : GithubMeRepositoryConnection.fromJson( - json['repositories'] as Map) - ..contributionsCollection = json['contributionsCollection'] == null - ? null - : GithubMeContributionsCollection.fromJson( - json['contributionsCollection'] as Map) - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeUserToJson(GithubMeUser instance) => - { - 'login': instance.login, - 'avatarUrl': instance.avatarUrl, - 'url': instance.url, - 'name': instance.name, - 'bio': instance.bio, - 'company': instance.company, - 'location': instance.location, - 'email': instance.email, - 'websiteUrl': instance.websiteUrl, - 'starredRepositories': instance.starredRepositories?.toJson(), - 'followers': instance.followers?.toJson(), - 'following': instance.following?.toJson(), - 'repositories': instance.repositories?.toJson(), - 'contributionsCollection': instance.contributionsCollection?.toJson(), - '__typename': instance.resolveType, - }; - -GithubMeStarredRepositoryConnection - _$GithubMeStarredRepositoryConnectionFromJson(Map json) { - return GithubMeStarredRepositoryConnection() - ..totalCount = json['totalCount'] as int; -} - -Map _$GithubMeStarredRepositoryConnectionToJson( - GithubMeStarredRepositoryConnection instance) => - { - 'totalCount': instance.totalCount, - }; - -GithubMeFollowerConnection _$GithubMeFollowerConnectionFromJson( - Map json) { - return GithubMeFollowerConnection()..totalCount = json['totalCount'] as int; -} - -Map _$GithubMeFollowerConnectionToJson( - GithubMeFollowerConnection instance) => - { - 'totalCount': instance.totalCount, - }; - -GithubMeFollowingConnection _$GithubMeFollowingConnectionFromJson( - Map json) { - return GithubMeFollowingConnection()..totalCount = json['totalCount'] as int; -} - -Map _$GithubMeFollowingConnectionToJson( - GithubMeFollowingConnection instance) => - { - 'totalCount': instance.totalCount, - }; - -GithubMeRepositoryConnection _$GithubMeRepositoryConnectionFromJson( - Map json) { - return GithubMeRepositoryConnection()..totalCount = json['totalCount'] as int; -} - -Map _$GithubMeRepositoryConnectionToJson( - GithubMeRepositoryConnection instance) => - { - 'totalCount': instance.totalCount, - }; - -GithubMeContributionsCollection _$GithubMeContributionsCollectionFromJson( - Map json) { - return GithubMeContributionsCollection() - ..contributionCalendar = json['contributionCalendar'] == null - ? null - : GithubMeContributionCalendar.fromJson( - json['contributionCalendar'] as Map); -} - -Map _$GithubMeContributionsCollectionToJson( - GithubMeContributionsCollection instance) => - { - 'contributionCalendar': instance.contributionCalendar?.toJson(), - }; - -GithubMeContributionCalendar _$GithubMeContributionCalendarFromJson( - Map json) { - return GithubMeContributionCalendar() - ..weeks = (json['weeks'] as List) - ?.map((e) => e == null - ? null - : GithubMeContributionCalendarWeek.fromJson( - e as Map)) - ?.toList(); -} - -Map _$GithubMeContributionCalendarToJson( - GithubMeContributionCalendar instance) => - { - 'weeks': instance.weeks?.map((e) => e?.toJson())?.toList(), - }; - -GithubMeContributionCalendarWeek _$GithubMeContributionCalendarWeekFromJson( - Map json) { - return GithubMeContributionCalendarWeek() - ..contributionDays = (json['contributionDays'] as List) - ?.map((e) => e == null - ? null - : GithubMeContributionCalendarDay.fromJson( - e as Map)) - ?.toList(); -} - -Map _$GithubMeContributionCalendarWeekToJson( - GithubMeContributionCalendarWeek instance) => - { - 'contributionDays': - instance.contributionDays?.map((e) => e?.toJson())?.toList(), - }; - -GithubMeContributionCalendarDay _$GithubMeContributionCalendarDayFromJson( - Map json) { - return GithubMeContributionCalendarDay()..color = json['color'] as String; -} - -Map _$GithubMeContributionCalendarDayToJson( - GithubMeContributionCalendarDay instance) => - { - 'color': instance.color, - }; - -GithubMeAuditEntryActor _$GithubMeAuditEntryActorFromJson( - Map json) { - return GithubMeAuditEntryActor(); -} - -Map _$GithubMeAuditEntryActorToJson( - GithubMeAuditEntryActor instance) => - {}; - -GithubMeNode _$GithubMeNodeFromJson(Map json) { - return GithubMeNode()..resolveType = json['__typename'] as String; -} - -Map _$GithubMeNodeToJson(GithubMeNode instance) => - { - '__typename': instance.resolveType, - }; - -GithubMeActor _$GithubMeActorFromJson(Map json) { - return GithubMeActor() - ..login = json['login'] as String - ..avatarUrl = json['avatarUrl'] as String - ..url = json['url'] as String - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeActorToJson(GithubMeActor instance) => - { - 'login': instance.login, - 'avatarUrl': instance.avatarUrl, - 'url': instance.url, - '__typename': instance.resolveType, - }; - -GithubMeRegistryPackageOwner _$GithubMeRegistryPackageOwnerFromJson( - Map json) { - return GithubMeRegistryPackageOwner() - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeRegistryPackageOwnerToJson( - GithubMeRegistryPackageOwner instance) => - { - '__typename': instance.resolveType, - }; - -GithubMeRegistryPackageSearch _$GithubMeRegistryPackageSearchFromJson( - Map json) { - return GithubMeRegistryPackageSearch() - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeRegistryPackageSearchToJson( - GithubMeRegistryPackageSearch instance) => - { - '__typename': instance.resolveType, - }; - -GithubMeProjectOwner _$GithubMeProjectOwnerFromJson(Map json) { - return GithubMeProjectOwner()..resolveType = json['__typename'] as String; -} - -Map _$GithubMeProjectOwnerToJson( - GithubMeProjectOwner instance) => - { - '__typename': instance.resolveType, - }; - -GithubMeRepositoryOwner _$GithubMeRepositoryOwnerFromJson( - Map json) { - return GithubMeRepositoryOwner() - ..login = json['login'] as String - ..avatarUrl = json['avatarUrl'] as String - ..url = json['url'] as String - ..repositories = json['repositories'] == null - ? null - : GithubMeRepositoryConnection.fromJson( - json['repositories'] as Map) - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeRepositoryOwnerToJson( - GithubMeRepositoryOwner instance) => - { - 'login': instance.login, - 'avatarUrl': instance.avatarUrl, - 'url': instance.url, - 'repositories': instance.repositories?.toJson(), - '__typename': instance.resolveType, - }; - -GithubMeUniformResourceLocatable _$GithubMeUniformResourceLocatableFromJson( - Map json) { - return GithubMeUniformResourceLocatable() - ..url = json['url'] as String - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeUniformResourceLocatableToJson( - GithubMeUniformResourceLocatable instance) => - { - 'url': instance.url, - '__typename': instance.resolveType, - }; - -GithubMeProfileOwner _$GithubMeProfileOwnerFromJson(Map json) { - return GithubMeProfileOwner() - ..login = json['login'] as String - ..name = json['name'] as String - ..location = json['location'] as String - ..email = json['email'] as String - ..websiteUrl = json['websiteUrl'] as String - ..resolveType = json['__typename'] as String; -} - -Map _$GithubMeProfileOwnerToJson( - GithubMeProfileOwner instance) => - { - 'login': instance.login, - 'name': instance.name, - 'location': instance.location, - 'email': instance.email, - 'websiteUrl': instance.websiteUrl, - '__typename': instance.resolveType, - }; - -GithubMeSponsorable _$GithubMeSponsorableFromJson(Map json) { - return GithubMeSponsorable()..resolveType = json['__typename'] as String; -} - -Map _$GithubMeSponsorableToJson( - GithubMeSponsorable instance) => - { - '__typename': instance.resolveType, - }; diff --git a/lib/graphql/github_me.graphql b/lib/graphql/github_me.graphql deleted file mode 100644 index 3f2724f..0000000 --- a/lib/graphql/github_me.graphql +++ /dev/null @@ -1,34 +0,0 @@ -{ - viewer { - login - avatarUrl - url - name - bio - company - location - email - websiteUrl - starredRepositories { - totalCount - } - followers { - totalCount - } - following { - totalCount - } - repositories { - totalCount - } - contributionsCollection { - contributionCalendar { - weeks { - contributionDays { - color - } - } - } - } - } -}