mirror of
https://github.com/git-touch/git-touch
synced 2025-02-07 15:18:47 +01:00
8095 lines
282 KiB
Dart
8095 lines
282 KiB
Dart
// 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 'gh.g.dart';
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepo with EquatableMixin {
|
|
GhRepo();
|
|
|
|
factory GhRepo.fromJson(Map<String, dynamic> json) => _$GhRepoFromJson(json);
|
|
|
|
GhRepoRepository repository;
|
|
|
|
@override
|
|
List<Object> get props => [repository];
|
|
Map<String, dynamic> toJson() => _$GhRepoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRepository extends GhRepoPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhRepoNode,
|
|
GhRepoProjectOwner,
|
|
GhRepoRegistryPackageOwner,
|
|
GhRepoRegistryPackageSearch,
|
|
GhRepoSubscribable,
|
|
GhRepoStarrable,
|
|
GhRepoUniformResourceLocatable,
|
|
GhRepoRepositoryInfo {
|
|
GhRepoRepository();
|
|
|
|
factory GhRepoRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRepositoryFromJson(json);
|
|
|
|
@override
|
|
GhRepoRepositoryOwner owner;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
String description;
|
|
|
|
@override
|
|
String homepageUrl;
|
|
|
|
@override
|
|
bool isPrivate;
|
|
|
|
@override
|
|
bool isFork;
|
|
|
|
@override
|
|
GhRepoStargazerConnection stargazers;
|
|
|
|
GhRepoRepositoryConnection forks;
|
|
|
|
GhRepoLanguage primaryLanguage;
|
|
|
|
@override
|
|
String id;
|
|
|
|
int diskUsage;
|
|
|
|
@override
|
|
bool hasIssuesEnabled;
|
|
|
|
@override
|
|
String url;
|
|
|
|
@override
|
|
bool viewerHasStarred;
|
|
|
|
@override
|
|
String projectsUrl;
|
|
|
|
GhRepoUserConnection watchers;
|
|
|
|
GhRepoIssueConnection issues;
|
|
|
|
GhRepoPullRequestConnection pullRequests;
|
|
|
|
@override
|
|
GhRepoProjectConnection projects;
|
|
|
|
GhRepoReleaseConnection releases;
|
|
|
|
GhRepoLanguageConnection languages;
|
|
|
|
GhRepoRef defaultBranchRef;
|
|
|
|
GhRepoRef ref;
|
|
|
|
GhRepoRefConnection refs;
|
|
|
|
@override
|
|
GhRepoLicense licenseInfo;
|
|
|
|
GhRepoRepositoryTopicConnection repositoryTopics;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
owner,
|
|
name,
|
|
description,
|
|
homepageUrl,
|
|
isPrivate,
|
|
isFork,
|
|
stargazers,
|
|
forks,
|
|
primaryLanguage,
|
|
id,
|
|
diskUsage,
|
|
hasIssuesEnabled,
|
|
url,
|
|
viewerHasStarred,
|
|
projectsUrl,
|
|
watchers,
|
|
issues,
|
|
pullRequests,
|
|
projects,
|
|
releases,
|
|
languages,
|
|
defaultBranchRef,
|
|
ref,
|
|
refs,
|
|
licenseInfo,
|
|
repositoryTopics,
|
|
resolveType
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhRepoRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRepositoryOwner with EquatableMixin {
|
|
GhRepoRepositoryOwner();
|
|
|
|
factory GhRepoRepositoryOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRepositoryOwnerFromJson(json);
|
|
|
|
String login;
|
|
|
|
String avatarUrl;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, avatarUrl, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoRepositoryOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoStargazerConnection with EquatableMixin {
|
|
GhRepoStargazerConnection();
|
|
|
|
factory GhRepoStargazerConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoStargazerConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoStargazerConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRepositoryConnection with EquatableMixin {
|
|
GhRepoRepositoryConnection();
|
|
|
|
factory GhRepoRepositoryConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRepositoryConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoRepositoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoLanguage with EquatableMixin implements GhRepoNode {
|
|
GhRepoLanguage();
|
|
|
|
factory GhRepoLanguage.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoLanguageFromJson(json);
|
|
|
|
String color;
|
|
|
|
String name;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [color, name, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoLanguageToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoNode with EquatableMixin {
|
|
GhRepoNode();
|
|
|
|
factory GhRepoNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoUserConnection with EquatableMixin {
|
|
GhRepoUserConnection();
|
|
|
|
factory GhRepoUserConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoUserConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoUserConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIssueConnection with EquatableMixin {
|
|
GhRepoIssueConnection();
|
|
|
|
factory GhRepoIssueConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIssueConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoIssueConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoPullRequestConnection with EquatableMixin {
|
|
GhRepoPullRequestConnection();
|
|
|
|
factory GhRepoPullRequestConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoPullRequestConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoPullRequestConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoProjectConnection with EquatableMixin {
|
|
GhRepoProjectConnection();
|
|
|
|
factory GhRepoProjectConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoProjectConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoProjectConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoReleaseConnection with EquatableMixin {
|
|
GhRepoReleaseConnection();
|
|
|
|
factory GhRepoReleaseConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoReleaseConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoReleaseConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoLanguageConnection with EquatableMixin {
|
|
GhRepoLanguageConnection();
|
|
|
|
factory GhRepoLanguageConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoLanguageConnectionFromJson(json);
|
|
|
|
int totalSize;
|
|
|
|
List<GhRepoLanguageEdge> edges;
|
|
|
|
@override
|
|
List<Object> get props => [totalSize, edges];
|
|
Map<String, dynamic> toJson() => _$GhRepoLanguageConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoLanguageEdge with EquatableMixin {
|
|
GhRepoLanguageEdge();
|
|
|
|
factory GhRepoLanguageEdge.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoLanguageEdgeFromJson(json);
|
|
|
|
int size;
|
|
|
|
GhRepoLanguage node;
|
|
|
|
@override
|
|
List<Object> get props => [size, node];
|
|
Map<String, dynamic> toJson() => _$GhRepoLanguageEdgeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRef with EquatableMixin implements GhRepoNode {
|
|
GhRepoRef();
|
|
|
|
factory GhRepoRef.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRefFromJson(json);
|
|
|
|
String name;
|
|
|
|
GhRepoGitObject target;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [name, target, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoRefToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoGitObject with EquatableMixin {
|
|
GhRepoGitObject();
|
|
|
|
factory GhRepoGitObject.fromJson(Map<String, dynamic> json) {
|
|
switch (json['__typename'].toString()) {
|
|
case 'Commit':
|
|
return GhRepoCommit.fromJson(json);
|
|
default:
|
|
}
|
|
return _$GhRepoGitObjectFromJson(json);
|
|
}
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() {
|
|
switch (resolveType) {
|
|
case 'Commit':
|
|
return (this as GhRepoCommit).toJson();
|
|
default:
|
|
}
|
|
return _$GhRepoGitObjectToJson(this);
|
|
}
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoCommit extends GhRepoPullRequestTimelineItem
|
|
with EquatableMixin
|
|
implements
|
|
GhRepoNode,
|
|
GhRepoGitObject,
|
|
GhRepoSubscribable,
|
|
GhRepoUniformResourceLocatable {
|
|
GhRepoCommit();
|
|
|
|
factory GhRepoCommit.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoCommitFromJson(json);
|
|
|
|
GhRepoCommitHistoryConnection history;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [history, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoCommitToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoCommitHistoryConnection with EquatableMixin {
|
|
GhRepoCommitHistoryConnection();
|
|
|
|
factory GhRepoCommitHistoryConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoCommitHistoryConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhRepoCommitHistoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoPullRequestTimelineItem with EquatableMixin {
|
|
GhRepoPullRequestTimelineItem();
|
|
|
|
factory GhRepoPullRequestTimelineItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoPullRequestTimelineItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhRepoPullRequestTimelineItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoSubscribable with EquatableMixin {
|
|
GhRepoSubscribable();
|
|
|
|
factory GhRepoSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoUniformResourceLocatable with EquatableMixin {
|
|
GhRepoUniformResourceLocatable();
|
|
|
|
factory GhRepoUniformResourceLocatable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRefConnection with EquatableMixin {
|
|
GhRepoRefConnection();
|
|
|
|
factory GhRepoRefConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRefConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
List<GhRepoRef> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount, nodes];
|
|
Map<String, dynamic> toJson() => _$GhRepoRefConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoLicense with EquatableMixin implements GhRepoNode {
|
|
GhRepoLicense();
|
|
|
|
factory GhRepoLicense.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoLicenseFromJson(json);
|
|
|
|
String name;
|
|
|
|
String spdxId;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [name, spdxId, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoLicenseToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRepositoryTopicConnection with EquatableMixin {
|
|
GhRepoRepositoryTopicConnection();
|
|
|
|
factory GhRepoRepositoryTopicConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRepositoryTopicConnectionFromJson(json);
|
|
|
|
List<GhRepoRepositoryTopic> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [nodes];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhRepoRepositoryTopicConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRepositoryTopic
|
|
with EquatableMixin
|
|
implements GhRepoNode, GhRepoUniformResourceLocatable {
|
|
GhRepoRepositoryTopic();
|
|
|
|
factory GhRepoRepositoryTopic.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRepositoryTopicFromJson(json);
|
|
|
|
@override
|
|
String url;
|
|
|
|
GhRepoTopic topic;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [url, topic, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoRepositoryTopicToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoTopic with EquatableMixin implements GhRepoNode, GhRepoStarrable {
|
|
GhRepoTopic();
|
|
|
|
factory GhRepoTopic.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoTopicFromJson(json);
|
|
|
|
String name;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [name, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoTopicToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoStarrable with EquatableMixin {
|
|
GhRepoStarrable();
|
|
|
|
factory GhRepoStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoStarrableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoPinnableItem with EquatableMixin {
|
|
GhRepoPinnableItem();
|
|
|
|
factory GhRepoPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhRepoPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoProjectOwner with EquatableMixin {
|
|
GhRepoProjectOwner();
|
|
|
|
factory GhRepoProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoProjectOwnerFromJson(json);
|
|
|
|
String id;
|
|
|
|
String projectsUrl;
|
|
|
|
GhRepoProjectConnection projects;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, projectsUrl, projects, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRegistryPackageOwner with EquatableMixin {
|
|
GhRepoRegistryPackageOwner();
|
|
|
|
factory GhRepoRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRegistryPackageOwnerFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRegistryPackageSearch with EquatableMixin {
|
|
GhRepoRegistryPackageSearch();
|
|
|
|
factory GhRepoRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRegistryPackageSearchFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoRepositoryInfo with EquatableMixin {
|
|
GhRepoRepositoryInfo();
|
|
|
|
factory GhRepoRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoRepositoryInfoFromJson(json);
|
|
|
|
GhRepoRepositoryOwner owner;
|
|
|
|
String name;
|
|
|
|
String description;
|
|
|
|
String homepageUrl;
|
|
|
|
bool isPrivate;
|
|
|
|
bool isFork;
|
|
|
|
bool hasIssuesEnabled;
|
|
|
|
String url;
|
|
|
|
GhRepoLicense licenseInfo;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
owner,
|
|
name,
|
|
description,
|
|
homepageUrl,
|
|
isPrivate,
|
|
isFork,
|
|
hasIssuesEnabled,
|
|
url,
|
|
licenseInfo,
|
|
resolveType
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhRepoRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoArguments extends JsonSerializable with EquatableMixin {
|
|
GhRepoArguments({this.owner, this.name, this.branchSpecified, this.branch});
|
|
|
|
factory GhRepoArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoArgumentsFromJson(json);
|
|
|
|
final String owner;
|
|
|
|
final String name;
|
|
|
|
final bool branchSpecified;
|
|
|
|
final String branch;
|
|
|
|
@override
|
|
List<Object> get props => [owner, name, branchSpecified, branch];
|
|
Map<String, dynamic> toJson() => _$GhRepoArgumentsToJson(this);
|
|
}
|
|
|
|
class GhRepoQuery extends GraphQLQuery<GhRepo, GhRepoArguments> {
|
|
GhRepoQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhRepo'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'owner')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'name')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'branchSpecified')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'branch')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repository'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'owner'),
|
|
value: VariableNode(name: NameNode(value: 'owner'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'name'),
|
|
value: VariableNode(name: NameNode(value: 'name')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'homepageUrl'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'id'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'diskUsage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'hasIssuesEnabled'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'url'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerHasStarred'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'projectsUrl'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'watchers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'issues'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'states'),
|
|
value: EnumValueNode(name: NameNode(value: 'OPEN')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'pullRequests'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'states'),
|
|
value: EnumValueNode(name: NameNode(value: 'OPEN')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'projects'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'releases'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'languages'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '10')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'orderBy'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'field'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'SIZE'))),
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'direction'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'DESC')))
|
|
]))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalSize'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'edges'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'size'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'node'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'defaultBranchRef'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'branchSpecified')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'target'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Commit'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'history'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'ref'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'qualifiedName'),
|
|
value: VariableNode(name: NameNode(value: 'branch')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'branchSpecified')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'target'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Commit'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'history'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'refs'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '100')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'refPrefix'),
|
|
value: StringValueNode(
|
|
value: 'refs/heads/', isBlock: false))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'licenseInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'spdxId'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'repositoryTopics'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '10'))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'url'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'topic'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhRepo';
|
|
|
|
@override
|
|
final GhRepoArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhRepo parse(Map<String, dynamic> json) => GhRepo.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsers with EquatableMixin {
|
|
GhUsers();
|
|
|
|
factory GhUsers.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersFromJson(json);
|
|
|
|
GhUsersUser user;
|
|
|
|
GhUsersOrganization organization;
|
|
|
|
GhUsersRepository repository;
|
|
|
|
@override
|
|
List<Object> get props => [user, organization, repository];
|
|
Map<String, dynamic> toJson() => _$GhUsersToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersUser extends GhUsersAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhUsersNode,
|
|
GhUsersActor,
|
|
GhUsersRegistryPackageOwner,
|
|
GhUsersRegistryPackageSearch,
|
|
GhUsersProjectOwner,
|
|
GhUsersRepositoryOwner,
|
|
GhUsersUniformResourceLocatable,
|
|
GhUsersProfileOwner,
|
|
GhUsersSponsorable {
|
|
GhUsersUser();
|
|
|
|
factory GhUsersUser.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersUserFromJson(json);
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
String avatarUrl;
|
|
|
|
String company;
|
|
|
|
@override
|
|
String location;
|
|
|
|
DateTime createdAt;
|
|
|
|
GhUsersFollowerConnection followers;
|
|
|
|
GhUsersFollowingConnection following;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
login,
|
|
name,
|
|
avatarUrl,
|
|
company,
|
|
location,
|
|
createdAt,
|
|
followers,
|
|
following,
|
|
resolveType
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhUsersUserToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersFollowerConnection with EquatableMixin {
|
|
GhUsersFollowerConnection();
|
|
|
|
factory GhUsersFollowerConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersFollowerConnectionFromJson(json);
|
|
|
|
GhUsersPageInfo pageInfo;
|
|
|
|
List<GhUsersUser> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() => _$GhUsersFollowerConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersPageInfo with EquatableMixin {
|
|
GhUsersPageInfo();
|
|
|
|
factory GhUsersPageInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersPageInfoFromJson(json);
|
|
|
|
bool hasNextPage;
|
|
|
|
String endCursor;
|
|
|
|
@override
|
|
List<Object> get props => [hasNextPage, endCursor];
|
|
Map<String, dynamic> toJson() => _$GhUsersPageInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersAuditEntryActor with EquatableMixin {
|
|
GhUsersAuditEntryActor();
|
|
|
|
factory GhUsersAuditEntryActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersAuditEntryActorFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhUsersAuditEntryActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersNode with EquatableMixin {
|
|
GhUsersNode();
|
|
|
|
factory GhUsersNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersActor with EquatableMixin {
|
|
GhUsersActor();
|
|
|
|
factory GhUsersActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersActorFromJson(json);
|
|
|
|
String login;
|
|
|
|
String avatarUrl;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, avatarUrl, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersRegistryPackageOwner with EquatableMixin {
|
|
GhUsersRegistryPackageOwner();
|
|
|
|
factory GhUsersRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersRegistryPackageSearch with EquatableMixin {
|
|
GhUsersRegistryPackageSearch();
|
|
|
|
factory GhUsersRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersProjectOwner with EquatableMixin {
|
|
GhUsersProjectOwner();
|
|
|
|
factory GhUsersProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersRepositoryOwner with EquatableMixin {
|
|
GhUsersRepositoryOwner();
|
|
|
|
factory GhUsersRepositoryOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersRepositoryOwnerFromJson(json);
|
|
|
|
String login;
|
|
|
|
String avatarUrl;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, avatarUrl, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersRepositoryOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersUniformResourceLocatable with EquatableMixin {
|
|
GhUsersUniformResourceLocatable();
|
|
|
|
factory GhUsersUniformResourceLocatable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhUsersUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersProfileOwner with EquatableMixin {
|
|
GhUsersProfileOwner();
|
|
|
|
factory GhUsersProfileOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersProfileOwnerFromJson(json);
|
|
|
|
String login;
|
|
|
|
String name;
|
|
|
|
String location;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, name, location, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersProfileOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersSponsorable with EquatableMixin {
|
|
GhUsersSponsorable();
|
|
|
|
factory GhUsersSponsorable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersSponsorableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersSponsorableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersFollowingConnection with EquatableMixin {
|
|
GhUsersFollowingConnection();
|
|
|
|
factory GhUsersFollowingConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersFollowingConnectionFromJson(json);
|
|
|
|
GhUsersPageInfo pageInfo;
|
|
|
|
List<GhUsersUser> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() => _$GhUsersFollowingConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersOrganization extends GhUsersAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhUsersNode,
|
|
GhUsersActor,
|
|
GhUsersRegistryPackageOwner,
|
|
GhUsersRegistryPackageSearch,
|
|
GhUsersProjectOwner,
|
|
GhUsersRepositoryOwner,
|
|
GhUsersUniformResourceLocatable,
|
|
GhUsersMemberStatusable,
|
|
GhUsersProfileOwner,
|
|
GhUsersSponsorable {
|
|
GhUsersOrganization();
|
|
|
|
factory GhUsersOrganization.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersOrganizationFromJson(json);
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
String avatarUrl;
|
|
|
|
@override
|
|
String location;
|
|
|
|
GhUsersOrganizationMemberConnection membersWithRole;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props =>
|
|
[login, name, avatarUrl, location, membersWithRole, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersOrganizationToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersOrganizationMemberConnection with EquatableMixin {
|
|
GhUsersOrganizationMemberConnection();
|
|
|
|
factory GhUsersOrganizationMemberConnection.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhUsersOrganizationMemberConnectionFromJson(json);
|
|
|
|
GhUsersPageInfo pageInfo;
|
|
|
|
List<GhUsersUser> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhUsersOrganizationMemberConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersMemberStatusable with EquatableMixin {
|
|
GhUsersMemberStatusable();
|
|
|
|
factory GhUsersMemberStatusable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersMemberStatusableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersMemberStatusableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersRepository extends GhUsersPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhUsersNode,
|
|
GhUsersProjectOwner,
|
|
GhUsersRegistryPackageOwner,
|
|
GhUsersRegistryPackageSearch,
|
|
GhUsersSubscribable,
|
|
GhUsersStarrable,
|
|
GhUsersUniformResourceLocatable,
|
|
GhUsersRepositoryInfo {
|
|
GhUsersRepository();
|
|
|
|
factory GhUsersRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersRepositoryFromJson(json);
|
|
|
|
GhUsersUserConnection watchers;
|
|
|
|
@override
|
|
GhUsersStargazerConnection stargazers;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [watchers, stargazers, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersUserConnection with EquatableMixin {
|
|
GhUsersUserConnection();
|
|
|
|
factory GhUsersUserConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersUserConnectionFromJson(json);
|
|
|
|
GhUsersPageInfo pageInfo;
|
|
|
|
List<GhUsersUser> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() => _$GhUsersUserConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersStargazerConnection with EquatableMixin {
|
|
GhUsersStargazerConnection();
|
|
|
|
factory GhUsersStargazerConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersStargazerConnectionFromJson(json);
|
|
|
|
GhUsersPageInfo pageInfo;
|
|
|
|
List<GhUsersUser> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() => _$GhUsersStargazerConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersPinnableItem with EquatableMixin {
|
|
GhUsersPinnableItem();
|
|
|
|
factory GhUsersPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhUsersPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersSubscribable with EquatableMixin {
|
|
GhUsersSubscribable();
|
|
|
|
factory GhUsersSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersStarrable with EquatableMixin {
|
|
GhUsersStarrable();
|
|
|
|
factory GhUsersStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersStarrableFromJson(json);
|
|
|
|
GhUsersStargazerConnection stargazers;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [stargazers, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersRepositoryInfo with EquatableMixin {
|
|
GhUsersRepositoryInfo();
|
|
|
|
factory GhUsersRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersRepositoryInfoFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUsersRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUsersArguments extends JsonSerializable with EquatableMixin {
|
|
GhUsersArguments(
|
|
{this.login,
|
|
this.repoName,
|
|
this.after,
|
|
this.isFollowers,
|
|
this.isFollowing,
|
|
this.isMember,
|
|
this.isStar,
|
|
this.isWatch});
|
|
|
|
factory GhUsersArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUsersArgumentsFromJson(json);
|
|
|
|
final String login;
|
|
|
|
final String repoName;
|
|
|
|
final String after;
|
|
|
|
final bool isFollowers;
|
|
|
|
final bool isFollowing;
|
|
|
|
final bool isMember;
|
|
|
|
final bool isStar;
|
|
|
|
final bool isWatch;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
login,
|
|
repoName,
|
|
after,
|
|
isFollowers,
|
|
isFollowing,
|
|
isMember,
|
|
isStar,
|
|
isWatch
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhUsersArgumentsToJson(this);
|
|
}
|
|
|
|
class GhUsersQuery extends GraphQLQuery<GhUsers, GhUsersArguments> {
|
|
GhUsersQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhUsers'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'login')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'repoName')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'after')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: false),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isFollowers')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isFollowing')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isMember')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isStar')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isWatch')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'user'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'login'),
|
|
value: VariableNode(name: NameNode(value: 'login')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'isMember')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'followers'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(name: NameNode(value: 'after')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isFollowers')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'following'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(name: NameNode(value: 'after')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isFollowing')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'organization'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'login'),
|
|
value: VariableNode(name: NameNode(value: 'login')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'include'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'isMember')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'location'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'membersWithRole'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(name: NameNode(value: 'after')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'repository'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'owner'),
|
|
value: VariableNode(name: NameNode(value: 'login'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'name'),
|
|
value: VariableNode(name: NameNode(value: 'repoName')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'watchers'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(name: NameNode(value: 'after')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isWatch')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(name: NameNode(value: 'after')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isStar')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhUsers';
|
|
|
|
@override
|
|
final GhUsersArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhUsers parse(Map<String, dynamic> json) => GhUsers.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepos with EquatableMixin {
|
|
GhRepos();
|
|
|
|
factory GhRepos.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposFromJson(json);
|
|
|
|
GhReposRepositoryOwner repositoryOwner;
|
|
|
|
@override
|
|
List<Object> get props => [repositoryOwner];
|
|
Map<String, dynamic> toJson() => _$GhReposToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposRepositoryOwner with EquatableMixin {
|
|
GhReposRepositoryOwner();
|
|
|
|
factory GhReposRepositoryOwner.fromJson(Map<String, dynamic> json) {
|
|
switch (json['__typename'].toString()) {
|
|
case 'User':
|
|
return GhReposUser.fromJson(json);
|
|
case 'Organization':
|
|
return GhReposOrganization.fromJson(json);
|
|
default:
|
|
}
|
|
return _$GhReposRepositoryOwnerFromJson(json);
|
|
}
|
|
|
|
String login;
|
|
|
|
String avatarUrl;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, avatarUrl, resolveType];
|
|
Map<String, dynamic> toJson() {
|
|
switch (resolveType) {
|
|
case 'User':
|
|
return (this as GhReposUser).toJson();
|
|
case 'Organization':
|
|
return (this as GhReposOrganization).toJson();
|
|
default:
|
|
}
|
|
return _$GhReposRepositoryOwnerToJson(this);
|
|
}
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposUser extends GhReposAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhReposNode,
|
|
GhReposActor,
|
|
GhReposRegistryPackageOwner,
|
|
GhReposRegistryPackageSearch,
|
|
GhReposProjectOwner,
|
|
GhReposRepositoryOwner,
|
|
GhReposUniformResourceLocatable,
|
|
GhReposProfileOwner,
|
|
GhReposSponsorable {
|
|
GhReposUser();
|
|
|
|
factory GhReposUser.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposUserFromJson(json);
|
|
|
|
GhReposRepositoryConnection repositories;
|
|
|
|
GhReposStarredRepositoryConnection starredRepositories;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
String avatarUrl;
|
|
|
|
@override
|
|
List<Object> get props =>
|
|
[repositories, starredRepositories, resolveType, login, avatarUrl];
|
|
Map<String, dynamic> toJson() => _$GhReposUserToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposRepositoryConnection with EquatableMixin {
|
|
GhReposRepositoryConnection();
|
|
|
|
factory GhReposRepositoryConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposRepositoryConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
GhReposPageInfo pageInfo;
|
|
|
|
List<GhReposRepository> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount, pageInfo, nodes];
|
|
Map<String, dynamic> toJson() => _$GhReposRepositoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposPageInfo with EquatableMixin {
|
|
GhReposPageInfo();
|
|
|
|
factory GhReposPageInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposPageInfoFromJson(json);
|
|
|
|
bool hasNextPage;
|
|
|
|
String endCursor;
|
|
|
|
@override
|
|
List<Object> get props => [hasNextPage, endCursor];
|
|
Map<String, dynamic> toJson() => _$GhReposPageInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposRepository extends GhReposPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhReposNode,
|
|
GhReposProjectOwner,
|
|
GhReposRegistryPackageOwner,
|
|
GhReposRegistryPackageSearch,
|
|
GhReposSubscribable,
|
|
GhReposStarrable,
|
|
GhReposUniformResourceLocatable,
|
|
GhReposRepositoryInfo {
|
|
GhReposRepository();
|
|
|
|
factory GhReposRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposRepositoryFromJson(json);
|
|
|
|
@override
|
|
GhReposRepositoryOwner owner;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
String description;
|
|
|
|
@override
|
|
bool isPrivate;
|
|
|
|
@override
|
|
bool isFork;
|
|
|
|
@override
|
|
DateTime updatedAt;
|
|
|
|
@override
|
|
GhReposStargazerConnection stargazers;
|
|
|
|
GhReposRepositoryConnection forks;
|
|
|
|
GhReposLanguage primaryLanguage;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
owner,
|
|
name,
|
|
description,
|
|
isPrivate,
|
|
isFork,
|
|
updatedAt,
|
|
stargazers,
|
|
forks,
|
|
primaryLanguage,
|
|
resolveType
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhReposRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposStargazerConnection with EquatableMixin {
|
|
GhReposStargazerConnection();
|
|
|
|
factory GhReposStargazerConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposStargazerConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhReposStargazerConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposLanguage with EquatableMixin implements GhReposNode {
|
|
GhReposLanguage();
|
|
|
|
factory GhReposLanguage.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposLanguageFromJson(json);
|
|
|
|
String color;
|
|
|
|
String name;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [color, name, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposLanguageToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposNode with EquatableMixin {
|
|
GhReposNode();
|
|
|
|
factory GhReposNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposPinnableItem with EquatableMixin {
|
|
GhReposPinnableItem();
|
|
|
|
factory GhReposPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhReposPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposProjectOwner with EquatableMixin {
|
|
GhReposProjectOwner();
|
|
|
|
factory GhReposProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposRegistryPackageOwner with EquatableMixin {
|
|
GhReposRegistryPackageOwner();
|
|
|
|
factory GhReposRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposRegistryPackageSearch with EquatableMixin {
|
|
GhReposRegistryPackageSearch();
|
|
|
|
factory GhReposRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposSubscribable with EquatableMixin {
|
|
GhReposSubscribable();
|
|
|
|
factory GhReposSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposStarrable with EquatableMixin {
|
|
GhReposStarrable();
|
|
|
|
factory GhReposStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposStarrableFromJson(json);
|
|
|
|
GhReposStargazerConnection stargazers;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [stargazers, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposUniformResourceLocatable with EquatableMixin {
|
|
GhReposUniformResourceLocatable();
|
|
|
|
factory GhReposUniformResourceLocatable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhReposUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposRepositoryInfo with EquatableMixin {
|
|
GhReposRepositoryInfo();
|
|
|
|
factory GhReposRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposRepositoryInfoFromJson(json);
|
|
|
|
GhReposRepositoryOwner owner;
|
|
|
|
String name;
|
|
|
|
String description;
|
|
|
|
bool isPrivate;
|
|
|
|
bool isFork;
|
|
|
|
DateTime updatedAt;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props =>
|
|
[owner, name, description, isPrivate, isFork, updatedAt, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposStarredRepositoryConnection with EquatableMixin {
|
|
GhReposStarredRepositoryConnection();
|
|
|
|
factory GhReposStarredRepositoryConnection.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhReposStarredRepositoryConnectionFromJson(json);
|
|
|
|
GhReposPageInfo pageInfo;
|
|
|
|
List<GhReposRepository> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhReposStarredRepositoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposAuditEntryActor with EquatableMixin {
|
|
GhReposAuditEntryActor();
|
|
|
|
factory GhReposAuditEntryActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposAuditEntryActorFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhReposAuditEntryActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposActor with EquatableMixin {
|
|
GhReposActor();
|
|
|
|
factory GhReposActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposActorFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposProfileOwner with EquatableMixin {
|
|
GhReposProfileOwner();
|
|
|
|
factory GhReposProfileOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposProfileOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposProfileOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposSponsorable with EquatableMixin {
|
|
GhReposSponsorable();
|
|
|
|
factory GhReposSponsorable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposSponsorableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposSponsorableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposOrganization extends GhReposAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhReposNode,
|
|
GhReposActor,
|
|
GhReposRegistryPackageOwner,
|
|
GhReposRegistryPackageSearch,
|
|
GhReposProjectOwner,
|
|
GhReposRepositoryOwner,
|
|
GhReposUniformResourceLocatable,
|
|
GhReposMemberStatusable,
|
|
GhReposProfileOwner,
|
|
GhReposSponsorable {
|
|
GhReposOrganization();
|
|
|
|
factory GhReposOrganization.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposOrganizationFromJson(json);
|
|
|
|
GhReposPinnableItemConnection pinnableItems;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
String avatarUrl;
|
|
|
|
@override
|
|
List<Object> get props => [pinnableItems, resolveType, login, avatarUrl];
|
|
Map<String, dynamic> toJson() => _$GhReposOrganizationToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposPinnableItemConnection with EquatableMixin {
|
|
GhReposPinnableItemConnection();
|
|
|
|
factory GhReposPinnableItemConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposPinnableItemConnectionFromJson(json);
|
|
|
|
GhReposPageInfo pageInfo;
|
|
|
|
List<GhReposPinnableItem> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() => _$GhReposPinnableItemConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposMemberStatusable with EquatableMixin {
|
|
GhReposMemberStatusable();
|
|
|
|
factory GhReposMemberStatusable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposMemberStatusableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhReposMemberStatusableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhReposArguments extends JsonSerializable with EquatableMixin {
|
|
GhReposArguments({this.owner, this.after, this.isStar});
|
|
|
|
factory GhReposArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhReposArgumentsFromJson(json);
|
|
|
|
final String owner;
|
|
|
|
final String after;
|
|
|
|
final bool isStar;
|
|
|
|
@override
|
|
List<Object> get props => [owner, after, isStar];
|
|
Map<String, dynamic> toJson() => _$GhReposArgumentsToJson(this);
|
|
}
|
|
|
|
class GhReposQuery extends GraphQLQuery<GhRepos, GhReposArguments> {
|
|
GhReposQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhRepos'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'owner')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'after')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: false),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isStar')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repositoryOwner'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'login'),
|
|
value: VariableNode(name: NameNode(value: 'owner')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'User'), isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repositories'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'after'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'orderBy'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'field'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'UPDATED_AT'))),
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'direction'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'DESC')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'skip'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isStar')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'updatedAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'starredRepositories'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'after'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'orderBy'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'field'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'STARRED_AT'))),
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'direction'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'DESC')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isStar')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'updatedAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Organization'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pinnableItems'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'after'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'types'),
|
|
value: ListValueNode(values: [
|
|
EnumValueNode(
|
|
name: NameNode(value: 'REPOSITORY'))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'skip'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'isStar')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name:
|
|
NameNode(value: 'Repository'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'updatedAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhRepos';
|
|
|
|
@override
|
|
final GhReposArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhRepos parse(Map<String, dynamic> json) => GhRepos.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUser with EquatableMixin {
|
|
GhUser();
|
|
|
|
factory GhUser.fromJson(Map<String, dynamic> json) => _$GhUserFromJson(json);
|
|
|
|
GhUserRepositoryOwner repositoryOwner;
|
|
|
|
GhUserUser viewer;
|
|
|
|
@override
|
|
List<Object> get props => [repositoryOwner, viewer];
|
|
Map<String, dynamic> toJson() => _$GhUserToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserRepositoryOwner with EquatableMixin {
|
|
GhUserRepositoryOwner();
|
|
|
|
factory GhUserRepositoryOwner.fromJson(Map<String, dynamic> json) {
|
|
switch (json['__typename'].toString()) {
|
|
case 'User':
|
|
return GhUserUser.fromJson(json);
|
|
case 'Organization':
|
|
return GhUserOrganization.fromJson(json);
|
|
default:
|
|
}
|
|
return _$GhUserRepositoryOwnerFromJson(json);
|
|
}
|
|
|
|
String id;
|
|
|
|
String login;
|
|
|
|
String avatarUrl;
|
|
|
|
String url;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, login, avatarUrl, url, resolveType];
|
|
Map<String, dynamic> toJson() {
|
|
switch (resolveType) {
|
|
case 'User':
|
|
return (this as GhUserUser).toJson();
|
|
case 'Organization':
|
|
return (this as GhUserOrganization).toJson();
|
|
default:
|
|
}
|
|
return _$GhUserRepositoryOwnerToJson(this);
|
|
}
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserUser extends GhUserAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhUserNode,
|
|
GhUserActor,
|
|
GhUserRegistryPackageOwner,
|
|
GhUserRegistryPackageSearch,
|
|
GhUserProjectOwner,
|
|
GhUserRepositoryOwner,
|
|
GhUserUniformResourceLocatable,
|
|
GhUserProfileOwner,
|
|
GhUserSponsorable {
|
|
GhUserUser();
|
|
|
|
factory GhUserUser.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserUserFromJson(json);
|
|
|
|
String name;
|
|
|
|
String bio;
|
|
|
|
String company;
|
|
|
|
String location;
|
|
|
|
String email;
|
|
|
|
DateTime createdAt;
|
|
|
|
String websiteUrl;
|
|
|
|
GhUserStarredRepositoryConnection starredRepositories;
|
|
|
|
GhUserFollowerConnection followers;
|
|
|
|
GhUserFollowingConnection following;
|
|
|
|
GhUserContributionsCollection contributionsCollection;
|
|
|
|
GhUserRepositoryConnection repositories;
|
|
|
|
GhUserPinnableItemConnection pinnedItems;
|
|
|
|
bool viewerCanFollow;
|
|
|
|
bool viewerIsFollowing;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
String id;
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
String avatarUrl;
|
|
|
|
@override
|
|
String url;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
name,
|
|
bio,
|
|
company,
|
|
location,
|
|
email,
|
|
createdAt,
|
|
websiteUrl,
|
|
starredRepositories,
|
|
followers,
|
|
following,
|
|
contributionsCollection,
|
|
repositories,
|
|
pinnedItems,
|
|
viewerCanFollow,
|
|
viewerIsFollowing,
|
|
resolveType,
|
|
id,
|
|
login,
|
|
avatarUrl,
|
|
url
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhUserUserToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserStarredRepositoryConnection with EquatableMixin {
|
|
GhUserStarredRepositoryConnection();
|
|
|
|
factory GhUserStarredRepositoryConnection.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhUserStarredRepositoryConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhUserStarredRepositoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserFollowerConnection with EquatableMixin {
|
|
GhUserFollowerConnection();
|
|
|
|
factory GhUserFollowerConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserFollowerConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhUserFollowerConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserFollowingConnection with EquatableMixin {
|
|
GhUserFollowingConnection();
|
|
|
|
factory GhUserFollowingConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserFollowingConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhUserFollowingConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserContributionsCollection with EquatableMixin {
|
|
GhUserContributionsCollection();
|
|
|
|
factory GhUserContributionsCollection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserContributionsCollectionFromJson(json);
|
|
|
|
GhUserContributionCalendar contributionCalendar;
|
|
|
|
@override
|
|
List<Object> get props => [contributionCalendar];
|
|
Map<String, dynamic> toJson() => _$GhUserContributionsCollectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserContributionCalendar with EquatableMixin {
|
|
GhUserContributionCalendar();
|
|
|
|
factory GhUserContributionCalendar.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserContributionCalendarFromJson(json);
|
|
|
|
List<GhUserContributionCalendarWeek> weeks;
|
|
|
|
@override
|
|
List<Object> get props => [weeks];
|
|
Map<String, dynamic> toJson() => _$GhUserContributionCalendarToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserContributionCalendarWeek with EquatableMixin {
|
|
GhUserContributionCalendarWeek();
|
|
|
|
factory GhUserContributionCalendarWeek.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserContributionCalendarWeekFromJson(json);
|
|
|
|
List<GhUserContributionCalendarDay> contributionDays;
|
|
|
|
@override
|
|
List<Object> get props => [contributionDays];
|
|
Map<String, dynamic> toJson() => _$GhUserContributionCalendarWeekToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserContributionCalendarDay with EquatableMixin {
|
|
GhUserContributionCalendarDay();
|
|
|
|
factory GhUserContributionCalendarDay.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserContributionCalendarDayFromJson(json);
|
|
|
|
String color;
|
|
|
|
@override
|
|
List<Object> get props => [color];
|
|
Map<String, dynamic> toJson() => _$GhUserContributionCalendarDayToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserRepositoryConnection with EquatableMixin {
|
|
GhUserRepositoryConnection();
|
|
|
|
factory GhUserRepositoryConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserRepositoryConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
List<GhUserRepository> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount, nodes];
|
|
Map<String, dynamic> toJson() => _$GhUserRepositoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserRepository extends GhUserPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhUserNode,
|
|
GhUserProjectOwner,
|
|
GhUserRegistryPackageOwner,
|
|
GhUserRegistryPackageSearch,
|
|
GhUserSubscribable,
|
|
GhUserStarrable,
|
|
GhUserUniformResourceLocatable,
|
|
GhUserRepositoryInfo {
|
|
GhUserRepository();
|
|
|
|
factory GhUserRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserRepositoryFromJson(json);
|
|
|
|
@override
|
|
GhUserRepositoryOwner owner;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
String description;
|
|
|
|
@override
|
|
bool isPrivate;
|
|
|
|
@override
|
|
bool isFork;
|
|
|
|
@override
|
|
GhUserStargazerConnection stargazers;
|
|
|
|
GhUserRepositoryConnection forks;
|
|
|
|
GhUserLanguage primaryLanguage;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
owner,
|
|
name,
|
|
description,
|
|
isPrivate,
|
|
isFork,
|
|
stargazers,
|
|
forks,
|
|
primaryLanguage,
|
|
resolveType
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhUserRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserStargazerConnection with EquatableMixin {
|
|
GhUserStargazerConnection();
|
|
|
|
factory GhUserStargazerConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserStargazerConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() => _$GhUserStargazerConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserLanguage with EquatableMixin implements GhUserNode {
|
|
GhUserLanguage();
|
|
|
|
factory GhUserLanguage.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserLanguageFromJson(json);
|
|
|
|
String color;
|
|
|
|
String name;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [color, name, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserLanguageToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserNode with EquatableMixin {
|
|
GhUserNode();
|
|
|
|
factory GhUserNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserPinnableItem with EquatableMixin {
|
|
GhUserPinnableItem();
|
|
|
|
factory GhUserPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhUserPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserProjectOwner with EquatableMixin {
|
|
GhUserProjectOwner();
|
|
|
|
factory GhUserProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserRegistryPackageOwner with EquatableMixin {
|
|
GhUserRegistryPackageOwner();
|
|
|
|
factory GhUserRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserRegistryPackageSearch with EquatableMixin {
|
|
GhUserRegistryPackageSearch();
|
|
|
|
factory GhUserRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserSubscribable with EquatableMixin {
|
|
GhUserSubscribable();
|
|
|
|
factory GhUserSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserStarrable with EquatableMixin {
|
|
GhUserStarrable();
|
|
|
|
factory GhUserStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserStarrableFromJson(json);
|
|
|
|
GhUserStargazerConnection stargazers;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [stargazers, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserUniformResourceLocatable with EquatableMixin {
|
|
GhUserUniformResourceLocatable();
|
|
|
|
factory GhUserUniformResourceLocatable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserRepositoryInfo with EquatableMixin {
|
|
GhUserRepositoryInfo();
|
|
|
|
factory GhUserRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserRepositoryInfoFromJson(json);
|
|
|
|
GhUserRepositoryOwner owner;
|
|
|
|
String name;
|
|
|
|
String description;
|
|
|
|
bool isPrivate;
|
|
|
|
bool isFork;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props =>
|
|
[owner, name, description, isPrivate, isFork, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserPinnableItemConnection with EquatableMixin {
|
|
GhUserPinnableItemConnection();
|
|
|
|
factory GhUserPinnableItemConnection.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserPinnableItemConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
List<GhUserPinnableItem> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount, nodes];
|
|
Map<String, dynamic> toJson() => _$GhUserPinnableItemConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserAuditEntryActor with EquatableMixin {
|
|
GhUserAuditEntryActor();
|
|
|
|
factory GhUserAuditEntryActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserAuditEntryActorFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhUserAuditEntryActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserActor with EquatableMixin {
|
|
GhUserActor();
|
|
|
|
factory GhUserActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserActorFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserProfileOwner with EquatableMixin {
|
|
GhUserProfileOwner();
|
|
|
|
factory GhUserProfileOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserProfileOwnerFromJson(json);
|
|
|
|
String name;
|
|
|
|
String location;
|
|
|
|
String email;
|
|
|
|
String websiteUrl;
|
|
|
|
GhUserPinnableItemConnection pinnedItems;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props =>
|
|
[name, location, email, websiteUrl, pinnedItems, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserProfileOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserSponsorable with EquatableMixin {
|
|
GhUserSponsorable();
|
|
|
|
factory GhUserSponsorable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserSponsorableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserSponsorableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserOrganization extends GhUserAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhUserNode,
|
|
GhUserActor,
|
|
GhUserRegistryPackageOwner,
|
|
GhUserRegistryPackageSearch,
|
|
GhUserProjectOwner,
|
|
GhUserRepositoryOwner,
|
|
GhUserUniformResourceLocatable,
|
|
GhUserMemberStatusable,
|
|
GhUserProfileOwner,
|
|
GhUserSponsorable {
|
|
GhUserOrganization();
|
|
|
|
factory GhUserOrganization.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserOrganizationFromJson(json);
|
|
|
|
String name;
|
|
|
|
String description;
|
|
|
|
String location;
|
|
|
|
String email;
|
|
|
|
String websiteUrl;
|
|
|
|
DateTime createdAt;
|
|
|
|
GhUserPinnableItemConnection pinnedItems;
|
|
|
|
GhUserPinnableItemConnection pinnableItems;
|
|
|
|
GhUserOrganizationMemberConnection membersWithRole;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
String id;
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
String avatarUrl;
|
|
|
|
@override
|
|
String url;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
name,
|
|
description,
|
|
location,
|
|
email,
|
|
websiteUrl,
|
|
createdAt,
|
|
pinnedItems,
|
|
pinnableItems,
|
|
membersWithRole,
|
|
resolveType,
|
|
id,
|
|
login,
|
|
avatarUrl,
|
|
url
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhUserOrganizationToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserOrganizationMemberConnection with EquatableMixin {
|
|
GhUserOrganizationMemberConnection();
|
|
|
|
factory GhUserOrganizationMemberConnection.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhUserOrganizationMemberConnectionFromJson(json);
|
|
|
|
int totalCount;
|
|
|
|
@override
|
|
List<Object> get props => [totalCount];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhUserOrganizationMemberConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserMemberStatusable with EquatableMixin {
|
|
GhUserMemberStatusable();
|
|
|
|
factory GhUserMemberStatusable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserMemberStatusableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhUserMemberStatusableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhUserArguments extends JsonSerializable with EquatableMixin {
|
|
GhUserArguments({this.login, this.isViewer});
|
|
|
|
factory GhUserArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhUserArgumentsFromJson(json);
|
|
|
|
final String login;
|
|
|
|
final bool isViewer;
|
|
|
|
@override
|
|
List<Object> get props => [login, isViewer];
|
|
Map<String, dynamic> toJson() => _$GhUserArgumentsToJson(this);
|
|
}
|
|
|
|
class GhUserQuery extends GraphQLQuery<GhUser, GhUserArguments> {
|
|
GhUserQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhUser'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'login')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'isViewer')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repositoryOwner'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'login'),
|
|
value: VariableNode(name: NameNode(value: 'login')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'isViewer')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'id'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
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),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'User'), isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
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: 'createdAt'),
|
|
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: '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)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'repositories'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '6')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'ownerAffiliations'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'OWNER'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'orderBy'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'field'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'STARGAZERS'))),
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'direction'),
|
|
value: EnumValueNode(
|
|
name: NameNode(value: 'DESC')))
|
|
]))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'pinnedItems'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '6'))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name:
|
|
NameNode(value: 'Repository'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerCanFollow'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerIsFollowing'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Organization'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'description'),
|
|
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: 'createdAt'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'pinnedItems'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '6'))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name:
|
|
NameNode(value: 'Repository'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'pinnableItems'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '6')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'types'),
|
|
value: ListValueNode(values: [
|
|
EnumValueNode(
|
|
name: NameNode(value: 'REPOSITORY'))
|
|
]))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name:
|
|
NameNode(value: 'Repository'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
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: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'description'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isPrivate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'isFork'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'stargazers'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'forks'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(
|
|
value: 'primaryLanguage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'color'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'membersWithRole'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'totalCount'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'viewer'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'include'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'isViewer')))
|
|
])
|
|
],
|
|
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: 'createdAt'),
|
|
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 = 'GhUser';
|
|
|
|
@override
|
|
final GhUserArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhUser parse(Map<String, dynamic> json) => GhUser.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObject with EquatableMixin {
|
|
GhObject();
|
|
|
|
factory GhObject.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectFromJson(json);
|
|
|
|
GhObjectRepository repository;
|
|
|
|
@override
|
|
List<Object> get props => [repository];
|
|
Map<String, dynamic> toJson() => _$GhObjectToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectRepository extends GhObjectPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhObjectNode,
|
|
GhObjectProjectOwner,
|
|
GhObjectRegistryPackageOwner,
|
|
GhObjectRegistryPackageSearch,
|
|
GhObjectSubscribable,
|
|
GhObjectStarrable,
|
|
GhObjectUniformResourceLocatable,
|
|
GhObjectRepositoryInfo {
|
|
GhObjectRepository();
|
|
|
|
factory GhObjectRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectRepositoryFromJson(json);
|
|
|
|
GhObjectGitObject object;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [object, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectGitObject with EquatableMixin {
|
|
GhObjectGitObject();
|
|
|
|
factory GhObjectGitObject.fromJson(Map<String, dynamic> json) {
|
|
switch (json['__typename'].toString()) {
|
|
case 'Tree':
|
|
return GhObjectTree.fromJson(json);
|
|
case 'Blob':
|
|
return GhObjectBlob.fromJson(json);
|
|
default:
|
|
}
|
|
return _$GhObjectGitObjectFromJson(json);
|
|
}
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() {
|
|
switch (resolveType) {
|
|
case 'Tree':
|
|
return (this as GhObjectTree).toJson();
|
|
case 'Blob':
|
|
return (this as GhObjectBlob).toJson();
|
|
default:
|
|
}
|
|
return _$GhObjectGitObjectToJson(this);
|
|
}
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectTree
|
|
with EquatableMixin
|
|
implements GhObjectNode, GhObjectGitObject {
|
|
GhObjectTree();
|
|
|
|
factory GhObjectTree.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectTreeFromJson(json);
|
|
|
|
List<GhObjectTreeEntry> entries;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [entries, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectTreeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectTreeEntry with EquatableMixin {
|
|
GhObjectTreeEntry();
|
|
|
|
factory GhObjectTreeEntry.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectTreeEntryFromJson(json);
|
|
|
|
String type;
|
|
|
|
String name;
|
|
|
|
@override
|
|
List<Object> get props => [type, name];
|
|
Map<String, dynamic> toJson() => _$GhObjectTreeEntryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectNode with EquatableMixin {
|
|
GhObjectNode();
|
|
|
|
factory GhObjectNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectBlob
|
|
with EquatableMixin
|
|
implements GhObjectNode, GhObjectGitObject {
|
|
GhObjectBlob();
|
|
|
|
factory GhObjectBlob.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectBlobFromJson(json);
|
|
|
|
String text;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [text, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectBlobToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectPinnableItem with EquatableMixin {
|
|
GhObjectPinnableItem();
|
|
|
|
factory GhObjectPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhObjectPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectProjectOwner with EquatableMixin {
|
|
GhObjectProjectOwner();
|
|
|
|
factory GhObjectProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectRegistryPackageOwner with EquatableMixin {
|
|
GhObjectRegistryPackageOwner();
|
|
|
|
factory GhObjectRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectRegistryPackageSearch with EquatableMixin {
|
|
GhObjectRegistryPackageSearch();
|
|
|
|
factory GhObjectRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectSubscribable with EquatableMixin {
|
|
GhObjectSubscribable();
|
|
|
|
factory GhObjectSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectStarrable with EquatableMixin {
|
|
GhObjectStarrable();
|
|
|
|
factory GhObjectStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectStarrableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectUniformResourceLocatable with EquatableMixin {
|
|
GhObjectUniformResourceLocatable();
|
|
|
|
factory GhObjectUniformResourceLocatable.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhObjectUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhObjectUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectRepositoryInfo with EquatableMixin {
|
|
GhObjectRepositoryInfo();
|
|
|
|
factory GhObjectRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectRepositoryInfoFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhObjectRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhObjectArguments extends JsonSerializable with EquatableMixin {
|
|
GhObjectArguments({this.owner, this.name, this.expression});
|
|
|
|
factory GhObjectArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhObjectArgumentsFromJson(json);
|
|
|
|
final String owner;
|
|
|
|
final String name;
|
|
|
|
final String expression;
|
|
|
|
@override
|
|
List<Object> get props => [owner, name, expression];
|
|
Map<String, dynamic> toJson() => _$GhObjectArgumentsToJson(this);
|
|
}
|
|
|
|
class GhObjectQuery extends GraphQLQuery<GhObject, GhObjectArguments> {
|
|
GhObjectQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhObject'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'owner')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'name')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'expression')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repository'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'owner'),
|
|
value: VariableNode(name: NameNode(value: 'owner'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'name'),
|
|
value: VariableNode(name: NameNode(value: 'name')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'object'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'expression'),
|
|
value:
|
|
VariableNode(name: NameNode(value: 'expression')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Tree'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'entries'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'type'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Blob'),
|
|
isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'text'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhObject';
|
|
|
|
@override
|
|
final GhObjectArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhObject parse(Map<String, dynamic> json) => GhObject.fromJson(json);
|
|
}
|
|
|
|
mixin TMixin {
|
|
GhCommitsGitObject target;
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommits with EquatableMixin {
|
|
GhCommits();
|
|
|
|
factory GhCommits.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsFromJson(json);
|
|
|
|
GhCommitsRepository repository;
|
|
|
|
@override
|
|
List<Object> get props => [repository];
|
|
Map<String, dynamic> toJson() => _$GhCommitsToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsRepository extends GhCommitsPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhCommitsNode,
|
|
GhCommitsProjectOwner,
|
|
GhCommitsRegistryPackageOwner,
|
|
GhCommitsRegistryPackageSearch,
|
|
GhCommitsSubscribable,
|
|
GhCommitsStarrable,
|
|
GhCommitsUniformResourceLocatable,
|
|
GhCommitsRepositoryInfo {
|
|
GhCommitsRepository();
|
|
|
|
factory GhCommitsRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsRepositoryFromJson(json);
|
|
|
|
GhCommitsRef defaultBranchRef;
|
|
|
|
GhCommitsRef ref;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [defaultBranchRef, ref, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsRef with EquatableMixin, TMixin implements GhCommitsNode {
|
|
GhCommitsRef();
|
|
|
|
factory GhCommitsRef.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsRefFromJson(json);
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [target, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsRefToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsGitObject with EquatableMixin {
|
|
GhCommitsGitObject();
|
|
|
|
factory GhCommitsGitObject.fromJson(Map<String, dynamic> json) {
|
|
switch (json['__typename'].toString()) {
|
|
case 'Commit':
|
|
return GhCommitsCommit.fromJson(json);
|
|
default:
|
|
}
|
|
return _$GhCommitsGitObjectFromJson(json);
|
|
}
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() {
|
|
switch (resolveType) {
|
|
case 'Commit':
|
|
return (this as GhCommitsCommit).toJson();
|
|
default:
|
|
}
|
|
return _$GhCommitsGitObjectToJson(this);
|
|
}
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsCommit extends GhCommitsPullRequestTimelineItem
|
|
with EquatableMixin
|
|
implements
|
|
GhCommitsNode,
|
|
GhCommitsGitObject,
|
|
GhCommitsSubscribable,
|
|
GhCommitsUniformResourceLocatable {
|
|
GhCommitsCommit();
|
|
|
|
factory GhCommitsCommit.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsCommitFromJson(json);
|
|
|
|
String oid;
|
|
|
|
String url;
|
|
|
|
String messageHeadline;
|
|
|
|
DateTime committedDate;
|
|
|
|
GhCommitsGitActor author;
|
|
|
|
GhCommitsStatus status;
|
|
|
|
GhCommitsCommitHistoryConnection history;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
oid,
|
|
url,
|
|
messageHeadline,
|
|
committedDate,
|
|
author,
|
|
status,
|
|
history,
|
|
resolveType
|
|
];
|
|
Map<String, dynamic> toJson() => _$GhCommitsCommitToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsGitActor with EquatableMixin {
|
|
GhCommitsGitActor();
|
|
|
|
factory GhCommitsGitActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsGitActorFromJson(json);
|
|
|
|
String name;
|
|
|
|
String avatarUrl;
|
|
|
|
GhCommitsUser user;
|
|
|
|
@override
|
|
List<Object> get props => [name, avatarUrl, user];
|
|
Map<String, dynamic> toJson() => _$GhCommitsGitActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsUser extends GhCommitsAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhCommitsNode,
|
|
GhCommitsActor,
|
|
GhCommitsRegistryPackageOwner,
|
|
GhCommitsRegistryPackageSearch,
|
|
GhCommitsProjectOwner,
|
|
GhCommitsRepositoryOwner,
|
|
GhCommitsUniformResourceLocatable,
|
|
GhCommitsProfileOwner,
|
|
GhCommitsSponsorable {
|
|
GhCommitsUser();
|
|
|
|
factory GhCommitsUser.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsUserFromJson(json);
|
|
|
|
@override
|
|
String login;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsUserToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsAuditEntryActor with EquatableMixin {
|
|
GhCommitsAuditEntryActor();
|
|
|
|
factory GhCommitsAuditEntryActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsAuditEntryActorFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhCommitsAuditEntryActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsNode with EquatableMixin {
|
|
GhCommitsNode();
|
|
|
|
factory GhCommitsNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsActor with EquatableMixin {
|
|
GhCommitsActor();
|
|
|
|
factory GhCommitsActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsActorFromJson(json);
|
|
|
|
String login;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsRegistryPackageOwner with EquatableMixin {
|
|
GhCommitsRegistryPackageOwner();
|
|
|
|
factory GhCommitsRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsRegistryPackageSearch with EquatableMixin {
|
|
GhCommitsRegistryPackageSearch();
|
|
|
|
factory GhCommitsRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsProjectOwner with EquatableMixin {
|
|
GhCommitsProjectOwner();
|
|
|
|
factory GhCommitsProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsRepositoryOwner with EquatableMixin {
|
|
GhCommitsRepositoryOwner();
|
|
|
|
factory GhCommitsRepositoryOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsRepositoryOwnerFromJson(json);
|
|
|
|
String login;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsRepositoryOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsUniformResourceLocatable with EquatableMixin {
|
|
GhCommitsUniformResourceLocatable();
|
|
|
|
factory GhCommitsUniformResourceLocatable.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhCommitsUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCommitsUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsProfileOwner with EquatableMixin {
|
|
GhCommitsProfileOwner();
|
|
|
|
factory GhCommitsProfileOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsProfileOwnerFromJson(json);
|
|
|
|
String login;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsProfileOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsSponsorable with EquatableMixin {
|
|
GhCommitsSponsorable();
|
|
|
|
factory GhCommitsSponsorable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsSponsorableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsSponsorableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsStatus with EquatableMixin implements GhCommitsNode {
|
|
GhCommitsStatus();
|
|
|
|
factory GhCommitsStatus.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsStatusFromJson(json);
|
|
|
|
GhCommitsStatusState state;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [state, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsStatusToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsCommitHistoryConnection with EquatableMixin {
|
|
GhCommitsCommitHistoryConnection();
|
|
|
|
factory GhCommitsCommitHistoryConnection.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhCommitsCommitHistoryConnectionFromJson(json);
|
|
|
|
GhCommitsPageInfo pageInfo;
|
|
|
|
List<GhCommitsCommit> nodes;
|
|
|
|
@override
|
|
List<Object> get props => [pageInfo, nodes];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCommitsCommitHistoryConnectionToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsPageInfo with EquatableMixin {
|
|
GhCommitsPageInfo();
|
|
|
|
factory GhCommitsPageInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsPageInfoFromJson(json);
|
|
|
|
bool hasNextPage;
|
|
|
|
String endCursor;
|
|
|
|
@override
|
|
List<Object> get props => [hasNextPage, endCursor];
|
|
Map<String, dynamic> toJson() => _$GhCommitsPageInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsPullRequestTimelineItem with EquatableMixin {
|
|
GhCommitsPullRequestTimelineItem();
|
|
|
|
factory GhCommitsPullRequestTimelineItem.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhCommitsPullRequestTimelineItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCommitsPullRequestTimelineItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsSubscribable with EquatableMixin {
|
|
GhCommitsSubscribable();
|
|
|
|
factory GhCommitsSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsPinnableItem with EquatableMixin {
|
|
GhCommitsPinnableItem();
|
|
|
|
factory GhCommitsPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhCommitsPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsStarrable with EquatableMixin {
|
|
GhCommitsStarrable();
|
|
|
|
factory GhCommitsStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsStarrableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsRepositoryInfo with EquatableMixin {
|
|
GhCommitsRepositoryInfo();
|
|
|
|
factory GhCommitsRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsRepositoryInfoFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCommitsRepositoryInfoToJson(this);
|
|
}
|
|
|
|
enum GhCommitsStatusState {
|
|
EXPECTED,
|
|
ERROR,
|
|
FAILURE,
|
|
PENDING,
|
|
SUCCESS,
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCommitsArguments extends JsonSerializable with EquatableMixin {
|
|
GhCommitsArguments(
|
|
{this.owner, this.name, this.ref, this.hasRef, this.after});
|
|
|
|
factory GhCommitsArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCommitsArgumentsFromJson(json);
|
|
|
|
final String owner;
|
|
|
|
final String name;
|
|
|
|
final String ref;
|
|
|
|
final bool hasRef;
|
|
|
|
final String after;
|
|
|
|
@override
|
|
List<Object> get props => [owner, name, ref, hasRef, after];
|
|
Map<String, dynamic> toJson() => _$GhCommitsArgumentsToJson(this);
|
|
}
|
|
|
|
class GhCommitsQuery extends GraphQLQuery<GhCommits, GhCommitsArguments> {
|
|
GhCommitsQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
FragmentDefinitionNode(
|
|
name: NameNode(value: 'T'),
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(name: NameNode(value: 'Ref'), isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'target'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: '__typename'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
InlineFragmentNode(
|
|
typeCondition: TypeConditionNode(
|
|
on: NamedTypeNode(
|
|
name: NameNode(value: 'Commit'), isNonNull: false)),
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'oid'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'url'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'messageHeadline'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'committedDate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'author'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'user'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'status'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'state'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'history'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'first'),
|
|
value: IntValueNode(value: '30')),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'after'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'after')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'pageInfo'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'hasNextPage'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'endCursor'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'nodes'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'oid'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'url'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'messageHeadline'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'committedDate'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'author'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'avatarUrl'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'user'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name:
|
|
NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'status'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet:
|
|
SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'state'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
])),
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhCommits'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'owner')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'name')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'ref')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'hasRef')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'after')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: false),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repository'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'owner'),
|
|
value: VariableNode(name: NameNode(value: 'owner'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'name'),
|
|
value: VariableNode(name: NameNode(value: 'name')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'defaultBranchRef'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value:
|
|
VariableNode(name: NameNode(value: 'hasRef')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FragmentSpreadNode(
|
|
name: NameNode(value: 'T'), directives: [])
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'ref'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'qualifiedName'),
|
|
value: VariableNode(name: NameNode(value: 'ref')))
|
|
],
|
|
directives: [
|
|
DirectiveNode(
|
|
name: NameNode(value: 'include'),
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(
|
|
name: NameNode(value: 'hasRef')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FragmentSpreadNode(
|
|
name: NameNode(value: 'T'), directives: [])
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhCommits';
|
|
|
|
@override
|
|
final GhCommitsArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhCommits parse(Map<String, dynamic> json) => GhCommits.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssue with EquatableMixin {
|
|
GhCreateIssue();
|
|
|
|
factory GhCreateIssue.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueFromJson(json);
|
|
|
|
GhCreateIssueCreateIssuePayload createIssue;
|
|
|
|
@override
|
|
List<Object> get props => [createIssue];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueCreateIssuePayload with EquatableMixin {
|
|
GhCreateIssueCreateIssuePayload();
|
|
|
|
factory GhCreateIssueCreateIssuePayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueCreateIssuePayloadFromJson(json);
|
|
|
|
GhCreateIssueIssue issue;
|
|
|
|
@override
|
|
List<Object> get props => [issue];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCreateIssueCreateIssuePayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueIssue extends GhCreateIssueProjectCardItem
|
|
with EquatableMixin
|
|
implements
|
|
GhCreateIssueNode,
|
|
GhCreateIssueAssignable,
|
|
GhCreateIssueClosable,
|
|
GhCreateIssueComment,
|
|
GhCreateIssueUpdatable,
|
|
GhCreateIssueUpdatableComment,
|
|
GhCreateIssueLabelable,
|
|
GhCreateIssueLockable,
|
|
GhCreateIssueReactable,
|
|
GhCreateIssueRepositoryNode,
|
|
GhCreateIssueSubscribable,
|
|
GhCreateIssueUniformResourceLocatable {
|
|
GhCreateIssueIssue();
|
|
|
|
factory GhCreateIssueIssue.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueIssueFromJson(json);
|
|
|
|
int number;
|
|
|
|
@override
|
|
GhCreateIssueRepository repository;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [number, repository, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueIssueToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueRepository extends GhCreateIssuePinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhCreateIssueNode,
|
|
GhCreateIssueProjectOwner,
|
|
GhCreateIssueRegistryPackageOwner,
|
|
GhCreateIssueRegistryPackageSearch,
|
|
GhCreateIssueSubscribable,
|
|
GhCreateIssueStarrable,
|
|
GhCreateIssueUniformResourceLocatable,
|
|
GhCreateIssueRepositoryInfo {
|
|
GhCreateIssueRepository();
|
|
|
|
factory GhCreateIssueRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueRepositoryFromJson(json);
|
|
|
|
@override
|
|
GhCreateIssueRepositoryOwner owner;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [owner, name, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueRepositoryOwner with EquatableMixin {
|
|
GhCreateIssueRepositoryOwner();
|
|
|
|
factory GhCreateIssueRepositoryOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueRepositoryOwnerFromJson(json);
|
|
|
|
String login;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [login, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueRepositoryOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssuePinnableItem with EquatableMixin {
|
|
GhCreateIssuePinnableItem();
|
|
|
|
factory GhCreateIssuePinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssuePinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssuePinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueNode with EquatableMixin {
|
|
GhCreateIssueNode();
|
|
|
|
factory GhCreateIssueNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueProjectOwner with EquatableMixin {
|
|
GhCreateIssueProjectOwner();
|
|
|
|
factory GhCreateIssueProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueRegistryPackageOwner with EquatableMixin {
|
|
GhCreateIssueRegistryPackageOwner();
|
|
|
|
factory GhCreateIssueRegistryPackageOwner.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhCreateIssueRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCreateIssueRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueRegistryPackageSearch with EquatableMixin {
|
|
GhCreateIssueRegistryPackageSearch();
|
|
|
|
factory GhCreateIssueRegistryPackageSearch.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhCreateIssueRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCreateIssueRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueSubscribable with EquatableMixin {
|
|
GhCreateIssueSubscribable();
|
|
|
|
factory GhCreateIssueSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueStarrable with EquatableMixin {
|
|
GhCreateIssueStarrable();
|
|
|
|
factory GhCreateIssueStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueStarrableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueUniformResourceLocatable with EquatableMixin {
|
|
GhCreateIssueUniformResourceLocatable();
|
|
|
|
factory GhCreateIssueUniformResourceLocatable.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhCreateIssueUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhCreateIssueUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueRepositoryInfo with EquatableMixin {
|
|
GhCreateIssueRepositoryInfo();
|
|
|
|
factory GhCreateIssueRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueRepositoryInfoFromJson(json);
|
|
|
|
GhCreateIssueRepositoryOwner owner;
|
|
|
|
String name;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [owner, name, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueProjectCardItem with EquatableMixin {
|
|
GhCreateIssueProjectCardItem();
|
|
|
|
factory GhCreateIssueProjectCardItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueProjectCardItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueProjectCardItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueAssignable with EquatableMixin {
|
|
GhCreateIssueAssignable();
|
|
|
|
factory GhCreateIssueAssignable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueAssignableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueAssignableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueClosable with EquatableMixin {
|
|
GhCreateIssueClosable();
|
|
|
|
factory GhCreateIssueClosable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueClosableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueClosableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueComment with EquatableMixin {
|
|
GhCreateIssueComment();
|
|
|
|
factory GhCreateIssueComment.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueCommentFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueCommentToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueUpdatable with EquatableMixin {
|
|
GhCreateIssueUpdatable();
|
|
|
|
factory GhCreateIssueUpdatable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueUpdatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueUpdatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueUpdatableComment with EquatableMixin {
|
|
GhCreateIssueUpdatableComment();
|
|
|
|
factory GhCreateIssueUpdatableComment.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueUpdatableCommentFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueUpdatableCommentToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueLabelable with EquatableMixin {
|
|
GhCreateIssueLabelable();
|
|
|
|
factory GhCreateIssueLabelable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueLabelableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueLabelableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueLockable with EquatableMixin {
|
|
GhCreateIssueLockable();
|
|
|
|
factory GhCreateIssueLockable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueLockableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueLockableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueReactable with EquatableMixin {
|
|
GhCreateIssueReactable();
|
|
|
|
factory GhCreateIssueReactable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueReactableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueReactableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueRepositoryNode with EquatableMixin {
|
|
GhCreateIssueRepositoryNode();
|
|
|
|
factory GhCreateIssueRepositoryNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueRepositoryNodeFromJson(json);
|
|
|
|
GhCreateIssueRepository repository;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [repository, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueRepositoryNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhCreateIssueArguments extends JsonSerializable with EquatableMixin {
|
|
GhCreateIssueArguments({this.repoId, this.title, this.body});
|
|
|
|
factory GhCreateIssueArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhCreateIssueArgumentsFromJson(json);
|
|
|
|
final String repoId;
|
|
|
|
final String title;
|
|
|
|
final String body;
|
|
|
|
@override
|
|
List<Object> get props => [repoId, title, body];
|
|
Map<String, dynamic> toJson() => _$GhCreateIssueArgumentsToJson(this);
|
|
}
|
|
|
|
class GhCreateIssueQuery
|
|
extends GraphQLQuery<GhCreateIssue, GhCreateIssueArguments> {
|
|
GhCreateIssueQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.mutation,
|
|
name: NameNode(value: 'GhCreateIssue'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'repoId')),
|
|
type: NamedTypeNode(name: NameNode(value: 'ID'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'title')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'body')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'createIssue'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'repositoryId'),
|
|
value: VariableNode(name: NameNode(value: 'repoId'))),
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'title'),
|
|
value: VariableNode(name: NameNode(value: 'title'))),
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'body'),
|
|
value: VariableNode(name: NameNode(value: 'body')))
|
|
]))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'issue'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'number'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null),
|
|
FieldNode(
|
|
name: NameNode(value: 'repository'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'owner'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'login'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'name'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhCreateIssue';
|
|
|
|
@override
|
|
final GhCreateIssueArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhCreateIssue parse(Map<String, dynamic> json) =>
|
|
GhCreateIssue.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoId with EquatableMixin {
|
|
GhRepoId();
|
|
|
|
factory GhRepoId.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdFromJson(json);
|
|
|
|
GhRepoIdRepository repository;
|
|
|
|
@override
|
|
List<Object> get props => [repository];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdRepository extends GhRepoIdPinnableItem
|
|
with EquatableMixin
|
|
implements
|
|
GhRepoIdNode,
|
|
GhRepoIdProjectOwner,
|
|
GhRepoIdRegistryPackageOwner,
|
|
GhRepoIdRegistryPackageSearch,
|
|
GhRepoIdSubscribable,
|
|
GhRepoIdStarrable,
|
|
GhRepoIdUniformResourceLocatable,
|
|
GhRepoIdRepositoryInfo {
|
|
GhRepoIdRepository();
|
|
|
|
factory GhRepoIdRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdRepositoryFromJson(json);
|
|
|
|
@override
|
|
String id;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdRepositoryToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdPinnableItem with EquatableMixin {
|
|
GhRepoIdPinnableItem();
|
|
|
|
factory GhRepoIdPinnableItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdPinnableItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdPinnableItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdNode with EquatableMixin {
|
|
GhRepoIdNode();
|
|
|
|
factory GhRepoIdNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdNodeFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdProjectOwner with EquatableMixin {
|
|
GhRepoIdProjectOwner();
|
|
|
|
factory GhRepoIdProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdProjectOwnerFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdRegistryPackageOwner with EquatableMixin {
|
|
GhRepoIdRegistryPackageOwner();
|
|
|
|
factory GhRepoIdRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdRegistryPackageOwnerFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdRegistryPackageSearch with EquatableMixin {
|
|
GhRepoIdRegistryPackageSearch();
|
|
|
|
factory GhRepoIdRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdRegistryPackageSearchFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdSubscribable with EquatableMixin {
|
|
GhRepoIdSubscribable();
|
|
|
|
factory GhRepoIdSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdSubscribableFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdStarrable with EquatableMixin {
|
|
GhRepoIdStarrable();
|
|
|
|
factory GhRepoIdStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdStarrableFromJson(json);
|
|
|
|
String id;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [id, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdUniformResourceLocatable with EquatableMixin {
|
|
GhRepoIdUniformResourceLocatable();
|
|
|
|
factory GhRepoIdUniformResourceLocatable.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhRepoIdUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhRepoIdUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdRepositoryInfo with EquatableMixin {
|
|
GhRepoIdRepositoryInfo();
|
|
|
|
factory GhRepoIdRepositoryInfo.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdRepositoryInfoFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdRepositoryInfoToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhRepoIdArguments extends JsonSerializable with EquatableMixin {
|
|
GhRepoIdArguments({this.owner, this.name});
|
|
|
|
factory GhRepoIdArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhRepoIdArgumentsFromJson(json);
|
|
|
|
final String owner;
|
|
|
|
final String name;
|
|
|
|
@override
|
|
List<Object> get props => [owner, name];
|
|
Map<String, dynamic> toJson() => _$GhRepoIdArgumentsToJson(this);
|
|
}
|
|
|
|
class GhRepoIdQuery extends GraphQLQuery<GhRepoId, GhRepoIdArguments> {
|
|
GhRepoIdQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.query,
|
|
name: NameNode(value: 'GhRepoId'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'owner')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'name')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'String'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'repository'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'owner'),
|
|
value: VariableNode(name: NameNode(value: 'owner'))),
|
|
ArgumentNode(
|
|
name: NameNode(value: 'name'),
|
|
value: VariableNode(name: NameNode(value: 'name')))
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'id'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhRepoId';
|
|
|
|
@override
|
|
final GhRepoIdArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhRepoId parse(Map<String, dynamic> json) => GhRepoId.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssue with EquatableMixin {
|
|
GhOpenIssue();
|
|
|
|
factory GhOpenIssue.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueFromJson(json);
|
|
|
|
GhOpenIssueReopenIssuePayload reopenIssue;
|
|
|
|
GhOpenIssueCloseIssuePayload closeIssue;
|
|
|
|
@override
|
|
List<Object> get props => [reopenIssue, closeIssue];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueReopenIssuePayload with EquatableMixin {
|
|
GhOpenIssueReopenIssuePayload();
|
|
|
|
factory GhOpenIssueReopenIssuePayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueReopenIssuePayloadFromJson(json);
|
|
|
|
GhOpenIssueIssue issue;
|
|
|
|
@override
|
|
List<Object> get props => [issue];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueReopenIssuePayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueIssue extends GhOpenIssueProjectCardItem
|
|
with EquatableMixin
|
|
implements
|
|
GhOpenIssueNode,
|
|
GhOpenIssueAssignable,
|
|
GhOpenIssueClosable,
|
|
GhOpenIssueComment,
|
|
GhOpenIssueUpdatable,
|
|
GhOpenIssueUpdatableComment,
|
|
GhOpenIssueLabelable,
|
|
GhOpenIssueLockable,
|
|
GhOpenIssueReactable,
|
|
GhOpenIssueRepositoryNode,
|
|
GhOpenIssueSubscribable,
|
|
GhOpenIssueUniformResourceLocatable {
|
|
GhOpenIssueIssue();
|
|
|
|
factory GhOpenIssueIssue.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueIssueFromJson(json);
|
|
|
|
@override
|
|
bool closed;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [closed, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueIssueToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueProjectCardItem with EquatableMixin {
|
|
GhOpenIssueProjectCardItem();
|
|
|
|
factory GhOpenIssueProjectCardItem.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueProjectCardItemFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueProjectCardItemToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueNode with EquatableMixin {
|
|
GhOpenIssueNode();
|
|
|
|
factory GhOpenIssueNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueAssignable with EquatableMixin {
|
|
GhOpenIssueAssignable();
|
|
|
|
factory GhOpenIssueAssignable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueAssignableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueAssignableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueClosable with EquatableMixin {
|
|
GhOpenIssueClosable();
|
|
|
|
factory GhOpenIssueClosable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueClosableFromJson(json);
|
|
|
|
bool closed;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [closed, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueClosableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueComment with EquatableMixin {
|
|
GhOpenIssueComment();
|
|
|
|
factory GhOpenIssueComment.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueCommentFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueCommentToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueUpdatable with EquatableMixin {
|
|
GhOpenIssueUpdatable();
|
|
|
|
factory GhOpenIssueUpdatable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueUpdatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueUpdatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueUpdatableComment with EquatableMixin {
|
|
GhOpenIssueUpdatableComment();
|
|
|
|
factory GhOpenIssueUpdatableComment.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueUpdatableCommentFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueUpdatableCommentToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueLabelable with EquatableMixin {
|
|
GhOpenIssueLabelable();
|
|
|
|
factory GhOpenIssueLabelable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueLabelableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueLabelableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueLockable with EquatableMixin {
|
|
GhOpenIssueLockable();
|
|
|
|
factory GhOpenIssueLockable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueLockableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueLockableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueReactable with EquatableMixin {
|
|
GhOpenIssueReactable();
|
|
|
|
factory GhOpenIssueReactable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueReactableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueReactableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueRepositoryNode with EquatableMixin {
|
|
GhOpenIssueRepositoryNode();
|
|
|
|
factory GhOpenIssueRepositoryNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueRepositoryNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueRepositoryNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueSubscribable with EquatableMixin {
|
|
GhOpenIssueSubscribable();
|
|
|
|
factory GhOpenIssueSubscribable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueSubscribableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueSubscribableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueUniformResourceLocatable with EquatableMixin {
|
|
GhOpenIssueUniformResourceLocatable();
|
|
|
|
factory GhOpenIssueUniformResourceLocatable.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhOpenIssueUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhOpenIssueUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueCloseIssuePayload with EquatableMixin {
|
|
GhOpenIssueCloseIssuePayload();
|
|
|
|
factory GhOpenIssueCloseIssuePayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueCloseIssuePayloadFromJson(json);
|
|
|
|
GhOpenIssueIssue issue;
|
|
|
|
@override
|
|
List<Object> get props => [issue];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueCloseIssuePayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhOpenIssueArguments extends JsonSerializable with EquatableMixin {
|
|
GhOpenIssueArguments({this.id, this.open});
|
|
|
|
factory GhOpenIssueArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhOpenIssueArgumentsFromJson(json);
|
|
|
|
final String id;
|
|
|
|
final bool open;
|
|
|
|
@override
|
|
List<Object> get props => [id, open];
|
|
Map<String, dynamic> toJson() => _$GhOpenIssueArgumentsToJson(this);
|
|
}
|
|
|
|
class GhOpenIssueQuery extends GraphQLQuery<GhOpenIssue, GhOpenIssueArguments> {
|
|
GhOpenIssueQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.mutation,
|
|
name: NameNode(value: 'GhOpenIssue'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'id')),
|
|
type: NamedTypeNode(name: NameNode(value: 'ID'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'open')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'reopenIssue'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'issueId'),
|
|
value: VariableNode(name: NameNode(value: 'id')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'include'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'open')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'issue'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'closed'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'closeIssue'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'issueId'),
|
|
value: VariableNode(name: NameNode(value: 'id')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'open')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'issue'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'closed'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhOpenIssue';
|
|
|
|
@override
|
|
final GhOpenIssueArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhOpenIssue parse(Map<String, dynamic> json) => GhOpenIssue.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhStar with EquatableMixin {
|
|
GhStar();
|
|
|
|
factory GhStar.fromJson(Map<String, dynamic> json) => _$GhStarFromJson(json);
|
|
|
|
GhStarAddStarPayload addStar;
|
|
|
|
GhStarRemoveStarPayload removeStar;
|
|
|
|
@override
|
|
List<Object> get props => [addStar, removeStar];
|
|
Map<String, dynamic> toJson() => _$GhStarToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhStarAddStarPayload with EquatableMixin {
|
|
GhStarAddStarPayload();
|
|
|
|
factory GhStarAddStarPayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhStarAddStarPayloadFromJson(json);
|
|
|
|
GhStarStarrable starrable;
|
|
|
|
@override
|
|
List<Object> get props => [starrable];
|
|
Map<String, dynamic> toJson() => _$GhStarAddStarPayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhStarStarrable with EquatableMixin {
|
|
GhStarStarrable();
|
|
|
|
factory GhStarStarrable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhStarStarrableFromJson(json);
|
|
|
|
bool viewerHasStarred;
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [viewerHasStarred, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhStarStarrableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhStarRemoveStarPayload with EquatableMixin {
|
|
GhStarRemoveStarPayload();
|
|
|
|
factory GhStarRemoveStarPayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhStarRemoveStarPayloadFromJson(json);
|
|
|
|
GhStarStarrable starrable;
|
|
|
|
@override
|
|
List<Object> get props => [starrable];
|
|
Map<String, dynamic> toJson() => _$GhStarRemoveStarPayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhStarArguments extends JsonSerializable with EquatableMixin {
|
|
GhStarArguments({this.id, this.flag});
|
|
|
|
factory GhStarArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhStarArgumentsFromJson(json);
|
|
|
|
final String id;
|
|
|
|
final bool flag;
|
|
|
|
@override
|
|
List<Object> get props => [id, flag];
|
|
Map<String, dynamic> toJson() => _$GhStarArgumentsToJson(this);
|
|
}
|
|
|
|
class GhStarQuery extends GraphQLQuery<GhStar, GhStarArguments> {
|
|
GhStarQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.mutation,
|
|
name: NameNode(value: 'GhStar'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'id')),
|
|
type: NamedTypeNode(name: NameNode(value: 'ID'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'flag')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'addStar'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'starrableId'),
|
|
value: VariableNode(name: NameNode(value: 'id')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'include'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'flag')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'starrable'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerHasStarred'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'removeStar'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'starrableId'),
|
|
value: VariableNode(name: NameNode(value: 'id')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'flag')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'starrable'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerHasStarred'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhStar';
|
|
|
|
@override
|
|
final GhStarArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhStar parse(Map<String, dynamic> json) => GhStar.fromJson(json);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollow with EquatableMixin {
|
|
GhFollow();
|
|
|
|
factory GhFollow.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowFromJson(json);
|
|
|
|
GhFollowFollowUserPayload followUser;
|
|
|
|
GhFollowUnfollowUserPayload unfollowUser;
|
|
|
|
@override
|
|
List<Object> get props => [followUser, unfollowUser];
|
|
Map<String, dynamic> toJson() => _$GhFollowToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowFollowUserPayload with EquatableMixin {
|
|
GhFollowFollowUserPayload();
|
|
|
|
factory GhFollowFollowUserPayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowFollowUserPayloadFromJson(json);
|
|
|
|
GhFollowUser user;
|
|
|
|
@override
|
|
List<Object> get props => [user];
|
|
Map<String, dynamic> toJson() => _$GhFollowFollowUserPayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowUser extends GhFollowAuditEntryActor
|
|
with EquatableMixin
|
|
implements
|
|
GhFollowNode,
|
|
GhFollowActor,
|
|
GhFollowRegistryPackageOwner,
|
|
GhFollowRegistryPackageSearch,
|
|
GhFollowProjectOwner,
|
|
GhFollowRepositoryOwner,
|
|
GhFollowUniformResourceLocatable,
|
|
GhFollowProfileOwner,
|
|
GhFollowSponsorable {
|
|
GhFollowUser();
|
|
|
|
factory GhFollowUser.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowUserFromJson(json);
|
|
|
|
bool viewerIsFollowing;
|
|
|
|
@override
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [viewerIsFollowing, resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowUserToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowAuditEntryActor with EquatableMixin {
|
|
GhFollowAuditEntryActor();
|
|
|
|
factory GhFollowAuditEntryActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowAuditEntryActorFromJson(json);
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
Map<String, dynamic> toJson() => _$GhFollowAuditEntryActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowNode with EquatableMixin {
|
|
GhFollowNode();
|
|
|
|
factory GhFollowNode.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowNodeFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowNodeToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowActor with EquatableMixin {
|
|
GhFollowActor();
|
|
|
|
factory GhFollowActor.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowActorFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowActorToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowRegistryPackageOwner with EquatableMixin {
|
|
GhFollowRegistryPackageOwner();
|
|
|
|
factory GhFollowRegistryPackageOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowRegistryPackageOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowRegistryPackageOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowRegistryPackageSearch with EquatableMixin {
|
|
GhFollowRegistryPackageSearch();
|
|
|
|
factory GhFollowRegistryPackageSearch.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowRegistryPackageSearchFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowRegistryPackageSearchToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowProjectOwner with EquatableMixin {
|
|
GhFollowProjectOwner();
|
|
|
|
factory GhFollowProjectOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowProjectOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowProjectOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowRepositoryOwner with EquatableMixin {
|
|
GhFollowRepositoryOwner();
|
|
|
|
factory GhFollowRepositoryOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowRepositoryOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowRepositoryOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowUniformResourceLocatable with EquatableMixin {
|
|
GhFollowUniformResourceLocatable();
|
|
|
|
factory GhFollowUniformResourceLocatable.fromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$GhFollowUniformResourceLocatableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() =>
|
|
_$GhFollowUniformResourceLocatableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowProfileOwner with EquatableMixin {
|
|
GhFollowProfileOwner();
|
|
|
|
factory GhFollowProfileOwner.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowProfileOwnerFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowProfileOwnerToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowSponsorable with EquatableMixin {
|
|
GhFollowSponsorable();
|
|
|
|
factory GhFollowSponsorable.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowSponsorableFromJson(json);
|
|
|
|
@JsonKey(name: '__typename')
|
|
String resolveType;
|
|
|
|
@override
|
|
List<Object> get props => [resolveType];
|
|
Map<String, dynamic> toJson() => _$GhFollowSponsorableToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowUnfollowUserPayload with EquatableMixin {
|
|
GhFollowUnfollowUserPayload();
|
|
|
|
factory GhFollowUnfollowUserPayload.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowUnfollowUserPayloadFromJson(json);
|
|
|
|
GhFollowUser user;
|
|
|
|
@override
|
|
List<Object> get props => [user];
|
|
Map<String, dynamic> toJson() => _$GhFollowUnfollowUserPayloadToJson(this);
|
|
}
|
|
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GhFollowArguments extends JsonSerializable with EquatableMixin {
|
|
GhFollowArguments({this.id, this.flag});
|
|
|
|
factory GhFollowArguments.fromJson(Map<String, dynamic> json) =>
|
|
_$GhFollowArgumentsFromJson(json);
|
|
|
|
final String id;
|
|
|
|
final bool flag;
|
|
|
|
@override
|
|
List<Object> get props => [id, flag];
|
|
Map<String, dynamic> toJson() => _$GhFollowArgumentsToJson(this);
|
|
}
|
|
|
|
class GhFollowQuery extends GraphQLQuery<GhFollow, GhFollowArguments> {
|
|
GhFollowQuery({this.variables});
|
|
|
|
@override
|
|
final DocumentNode document = DocumentNode(definitions: [
|
|
OperationDefinitionNode(
|
|
type: OperationType.mutation,
|
|
name: NameNode(value: 'GhFollow'),
|
|
variableDefinitions: [
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'id')),
|
|
type: NamedTypeNode(name: NameNode(value: 'ID'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: []),
|
|
VariableDefinitionNode(
|
|
variable: VariableNode(name: NameNode(value: 'flag')),
|
|
type: NamedTypeNode(
|
|
name: NameNode(value: 'Boolean'), isNonNull: true),
|
|
defaultValue: DefaultValueNode(value: null),
|
|
directives: [])
|
|
],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'followUser'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'userId'),
|
|
value: VariableNode(name: NameNode(value: 'id')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'include'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'flag')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'user'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerIsFollowing'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
])),
|
|
FieldNode(
|
|
name: NameNode(value: 'unfollowUser'),
|
|
alias: null,
|
|
arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'input'),
|
|
value: ObjectValueNode(fields: [
|
|
ObjectFieldNode(
|
|
name: NameNode(value: 'userId'),
|
|
value: VariableNode(name: NameNode(value: 'id')))
|
|
]))
|
|
],
|
|
directives: [
|
|
DirectiveNode(name: NameNode(value: 'skip'), arguments: [
|
|
ArgumentNode(
|
|
name: NameNode(value: 'if'),
|
|
value: VariableNode(name: NameNode(value: 'flag')))
|
|
])
|
|
],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'user'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: SelectionSetNode(selections: [
|
|
FieldNode(
|
|
name: NameNode(value: 'viewerIsFollowing'),
|
|
alias: null,
|
|
arguments: [],
|
|
directives: [],
|
|
selectionSet: null)
|
|
]))
|
|
]))
|
|
]))
|
|
]);
|
|
|
|
@override
|
|
final String operationName = 'GhFollow';
|
|
|
|
@override
|
|
final GhFollowArguments variables;
|
|
|
|
@override
|
|
List<Object> get props => [document, operationName, variables];
|
|
@override
|
|
GhFollow parse(Map<String, dynamic> json) => GhFollow.fromJson(json);
|
|
}
|