Highly ambitious ATProtocol AppView service and sdks
at main 203 lines 4.9 kB view raw
1/** 2 * @generated SignedSource<<d1a363c0bc591178b69ff9ba423349ea>> 3 * @lightSyntaxTransform 4 * @nogrep 5 */ 6 7/* tslint:disable */ 8/* eslint-disable */ 9// @ts-nocheck 10 11import { ConcreteRequest } from 'relay-runtime'; 12export type SliceSyncJobsQuery$variables = { 13 slice?: string | null | undefined; 14}; 15export type SliceSyncJobsQuery$data = { 16 readonly syncJobs: ReadonlyArray<{ 17 readonly completedAt: string | null | undefined; 18 readonly createdAt: string; 19 readonly error: string | null | undefined; 20 readonly id: string; 21 readonly jobId: string; 22 readonly result: { 23 readonly collectionsSynced: ReadonlyArray<string>; 24 readonly message: string; 25 readonly reposProcessed: number; 26 readonly success: boolean; 27 readonly totalRecords: number; 28 } | null | undefined; 29 readonly retryCount: number; 30 readonly startedAt: string | null | undefined; 31 readonly status: string; 32 }>; 33}; 34export type SliceSyncJobsQuery = { 35 response: SliceSyncJobsQuery$data; 36 variables: SliceSyncJobsQuery$variables; 37}; 38 39const node: ConcreteRequest = (function(){ 40var v0 = [ 41 { 42 "defaultValue": null, 43 "kind": "LocalArgument", 44 "name": "slice" 45 } 46], 47v1 = [ 48 { 49 "alias": null, 50 "args": [ 51 { 52 "kind": "Literal", 53 "name": "limit", 54 "value": 20 55 }, 56 { 57 "kind": "Variable", 58 "name": "slice", 59 "variableName": "slice" 60 } 61 ], 62 "concreteType": "SyncJob", 63 "kind": "LinkedField", 64 "name": "syncJobs", 65 "plural": true, 66 "selections": [ 67 { 68 "alias": null, 69 "args": null, 70 "kind": "ScalarField", 71 "name": "id", 72 "storageKey": null 73 }, 74 { 75 "alias": null, 76 "args": null, 77 "kind": "ScalarField", 78 "name": "jobId", 79 "storageKey": null 80 }, 81 { 82 "alias": null, 83 "args": null, 84 "kind": "ScalarField", 85 "name": "status", 86 "storageKey": null 87 }, 88 { 89 "alias": null, 90 "args": null, 91 "kind": "ScalarField", 92 "name": "createdAt", 93 "storageKey": null 94 }, 95 { 96 "alias": null, 97 "args": null, 98 "kind": "ScalarField", 99 "name": "startedAt", 100 "storageKey": null 101 }, 102 { 103 "alias": null, 104 "args": null, 105 "kind": "ScalarField", 106 "name": "completedAt", 107 "storageKey": null 108 }, 109 { 110 "alias": null, 111 "args": null, 112 "concreteType": "SyncJobResult", 113 "kind": "LinkedField", 114 "name": "result", 115 "plural": false, 116 "selections": [ 117 { 118 "alias": null, 119 "args": null, 120 "kind": "ScalarField", 121 "name": "success", 122 "storageKey": null 123 }, 124 { 125 "alias": null, 126 "args": null, 127 "kind": "ScalarField", 128 "name": "totalRecords", 129 "storageKey": null 130 }, 131 { 132 "alias": null, 133 "args": null, 134 "kind": "ScalarField", 135 "name": "collectionsSynced", 136 "storageKey": null 137 }, 138 { 139 "alias": null, 140 "args": null, 141 "kind": "ScalarField", 142 "name": "reposProcessed", 143 "storageKey": null 144 }, 145 { 146 "alias": null, 147 "args": null, 148 "kind": "ScalarField", 149 "name": "message", 150 "storageKey": null 151 } 152 ], 153 "storageKey": null 154 }, 155 { 156 "alias": null, 157 "args": null, 158 "kind": "ScalarField", 159 "name": "error", 160 "storageKey": null 161 }, 162 { 163 "alias": null, 164 "args": null, 165 "kind": "ScalarField", 166 "name": "retryCount", 167 "storageKey": null 168 } 169 ], 170 "storageKey": null 171 } 172]; 173return { 174 "fragment": { 175 "argumentDefinitions": (v0/*: any*/), 176 "kind": "Fragment", 177 "metadata": null, 178 "name": "SliceSyncJobsQuery", 179 "selections": (v1/*: any*/), 180 "type": "Query", 181 "abstractKey": null 182 }, 183 "kind": "Request", 184 "operation": { 185 "argumentDefinitions": (v0/*: any*/), 186 "kind": "Operation", 187 "name": "SliceSyncJobsQuery", 188 "selections": (v1/*: any*/) 189 }, 190 "params": { 191 "cacheID": "50c15c7392083fccefdf12c2270598ae", 192 "id": null, 193 "metadata": {}, 194 "name": "SliceSyncJobsQuery", 195 "operationKind": "query", 196 "text": "query SliceSyncJobsQuery(\n $slice: String\n) {\n syncJobs(slice: $slice, limit: 20) {\n id\n jobId\n status\n createdAt\n startedAt\n completedAt\n result {\n success\n totalRecords\n collectionsSynced\n reposProcessed\n message\n }\n error\n retryCount\n }\n}\n" 197 } 198}; 199})(); 200 201(node as any).hash = "a27ca74d4377c3f7d6ba31a8f43fd93c"; 202 203export default node;