-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathqueries.ts
More file actions
executable file
·190 lines (177 loc) · 3.64 KB
/
queries.ts
File metadata and controls
executable file
·190 lines (177 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import { gql, DocumentNode } from "@apollo/client/core";
const userConnectionsQuery: DocumentNode = gql`
query UserConnections(
$query: QueryUserConnectionInput! = { provider: "GitHub" }
) {
userConnections: UserConnections(query: $query) {
userUid
provider
}
}
`;
const repositoriesQuery: DocumentNode = gql`
query Repositories(
$repositoriesInput: RepositoriesInput! = { provider: "GitHub" }
) {
repositories: Repositories(query: $repositoriesInput) {
id
url
name
fullName
defaultBranch
}
}
`;
const frameworkQuery = gql`
query Framework($query: GitProviderFrameworkInput!) {
framework: Framework(query: $query) {
framework
}
}
`;
const fileFrameworkQuery = gql`
query FileFramework($query: FileUploadFrameworkInput!) {
framework: FileFramework(query: $query) {
framework
}
}
`;
const cmsEnvironmentVariablesQuery = gql`
query cmsEnvironmentVariables {
envVariables: cmsEnvironmentVariables {
key
keyName
value
}
}
`;
const branchesQuery = gql`
query GitBranches(
$first: Float = 100
$page: Float = 1
$query: BranchesInput!
) {
branches: GitBranches(query: $query, first: $first, page: $page) {
edges {
node {
name
}
cursor
}
pageData {
page
}
pageInfo {
hasNextPage
}
}
}
`;
const projectsQuery: DocumentNode = gql`
query Projects($query: QueryProjectsInput!) {
projects: Projects(query: $query) {
edges {
node {
uid
name
createdAt
updatedAt
createdBy
updatedBy
description
projectType
cmsStackApiKey
organizationUid
repository {
repositoryName
repositoryUrl
username
gitProviderMetadata {
... on GitHubMetadata {
connectionUid
gitProvider
}
}
}
}
}
}
}
`;
const deploymentQuery: DocumentNode = gql`
query getDeploymentsById($query: DeploymentInput!) {
Deployment(query: $query) {
status
uid
}
}
`;
const deploymentLogsQuery: DocumentNode = gql`
query GetLogs($deploymentUid: ID!, $timestamp: String) {
getLogs(deploymentUid: $deploymentUid, timestamp: $timestamp) {
deploymentUid
message
stage
timestamp
}
}
`;
const serverlessLogsQuery: DocumentNode = gql`
query GetServerlessLogs($query: QueryLogMessagesInputType!) {
getServerlessLogs(query: $query) {
logs {
source
message
timestamp
}
}
}
`;
const latestLiveDeploymentQuery: DocumentNode = gql`
query LatestLiveDeployment($query: QueryDeploymentsInput!) {
latestLiveDeployment(query: $query) {
uid
environment
deploymentNumber
deploymentUrl
}
}
`;
const environmentsQuery: DocumentNode = gql`
query Environments {
Environments {
edges {
node {
uid
name
frameworkPreset
deployments {
edges {
node {
uid
createdAt
commitMessage
deploymentUrl
deploymentNumber
}
}
}
}
}
}
}
`;
export {
projectsQuery,
branchesQuery,
frameworkQuery,
repositoriesQuery,
fileFrameworkQuery,
userConnectionsQuery,
cmsEnvironmentVariablesQuery,
deploymentQuery,
deploymentLogsQuery,
serverlessLogsQuery,
latestLiveDeploymentQuery,
environmentsQuery,
};