Highly ambitious ATProtocol AppView service and sdks
at main 173 lines 4.5 kB view raw
1/** 2 * @generated SignedSource<<af4ff104aee13ec3df07677ea9ef9ce7>> 3 * @lightSyntaxTransform 4 * @nogrep 5 */ 6 7/* tslint:disable */ 8/* eslint-disable */ 9// @ts-nocheck 10 11import { ConcreteRequest } from 'relay-runtime'; 12export type SliceRecordsWhereInput = { 13 cid?: StringFilter | null | undefined; 14 collection?: StringFilter | null | undefined; 15 did?: StringFilter | null | undefined; 16 indexedAt?: DateTimeFilter | null | undefined; 17 json?: StringFilter | null | undefined; 18 or?: ReadonlyArray<SliceRecordsWhereInput | null | undefined> | null | undefined; 19 uri?: StringFilter | null | undefined; 20}; 21export type StringFilter = { 22 contains?: string | null | undefined; 23 eq?: string | null | undefined; 24 fuzzy?: string | null | undefined; 25 gt?: string | null | undefined; 26 gte?: string | null | undefined; 27 in?: ReadonlyArray<string | null | undefined> | null | undefined; 28 lt?: string | null | undefined; 29 lte?: string | null | undefined; 30}; 31export type DateTimeFilter = { 32 eq?: string | null | undefined; 33 gt?: string | null | undefined; 34 gte?: string | null | undefined; 35 lt?: string | null | undefined; 36 lte?: string | null | undefined; 37}; 38export type PublishedLexiconsListQuery$variables = { 39 sliceUri: string; 40 where?: SliceRecordsWhereInput | null | undefined; 41}; 42export type PublishedLexiconsListQuery$data = { 43 readonly sliceRecords: { 44 readonly edges: ReadonlyArray<{ 45 readonly node: { 46 readonly collection: string; 47 readonly uri: string; 48 readonly value: string; 49 }; 50 }>; 51 }; 52}; 53export type PublishedLexiconsListQuery = { 54 response: PublishedLexiconsListQuery$data; 55 variables: PublishedLexiconsListQuery$variables; 56}; 57 58const node: ConcreteRequest = (function(){ 59var v0 = [ 60 { 61 "defaultValue": null, 62 "kind": "LocalArgument", 63 "name": "sliceUri" 64 }, 65 { 66 "defaultValue": null, 67 "kind": "LocalArgument", 68 "name": "where" 69 } 70], 71v1 = [ 72 { 73 "alias": null, 74 "args": [ 75 { 76 "kind": "Literal", 77 "name": "first", 78 "value": 1000 79 }, 80 { 81 "kind": "Variable", 82 "name": "sliceUri", 83 "variableName": "sliceUri" 84 }, 85 { 86 "kind": "Variable", 87 "name": "where", 88 "variableName": "where" 89 } 90 ], 91 "concreteType": "SliceRecordsConnection", 92 "kind": "LinkedField", 93 "name": "sliceRecords", 94 "plural": false, 95 "selections": [ 96 { 97 "alias": null, 98 "args": null, 99 "concreteType": "SliceRecordEdge", 100 "kind": "LinkedField", 101 "name": "edges", 102 "plural": true, 103 "selections": [ 104 { 105 "alias": null, 106 "args": null, 107 "concreteType": "SliceRecord", 108 "kind": "LinkedField", 109 "name": "node", 110 "plural": false, 111 "selections": [ 112 { 113 "alias": null, 114 "args": null, 115 "kind": "ScalarField", 116 "name": "uri", 117 "storageKey": null 118 }, 119 { 120 "alias": null, 121 "args": null, 122 "kind": "ScalarField", 123 "name": "collection", 124 "storageKey": null 125 }, 126 { 127 "alias": null, 128 "args": null, 129 "kind": "ScalarField", 130 "name": "value", 131 "storageKey": null 132 } 133 ], 134 "storageKey": null 135 } 136 ], 137 "storageKey": null 138 } 139 ], 140 "storageKey": null 141 } 142]; 143return { 144 "fragment": { 145 "argumentDefinitions": (v0/*: any*/), 146 "kind": "Fragment", 147 "metadata": null, 148 "name": "PublishedLexiconsListQuery", 149 "selections": (v1/*: any*/), 150 "type": "Query", 151 "abstractKey": null 152 }, 153 "kind": "Request", 154 "operation": { 155 "argumentDefinitions": (v0/*: any*/), 156 "kind": "Operation", 157 "name": "PublishedLexiconsListQuery", 158 "selections": (v1/*: any*/) 159 }, 160 "params": { 161 "cacheID": "9376c8881ba959a67c32afef675e6baa", 162 "id": null, 163 "metadata": {}, 164 "name": "PublishedLexiconsListQuery", 165 "operationKind": "query", 166 "text": "query PublishedLexiconsListQuery(\n $sliceUri: String!\n $where: SliceRecordsWhereInput\n) {\n sliceRecords(sliceUri: $sliceUri, first: 1000, where: $where) {\n edges {\n node {\n uri\n collection\n value\n }\n }\n }\n}\n" 167 } 168}; 169})(); 170 171(node as any).hash = "c51dfb1274d633dc4db99d903954a58e"; 172 173export default node;