From 211cb1d7cb3292dd7d697de590b07dfcf2789f9b Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Wed, 17 Jul 2024 18:05:48 -0600 Subject: [PATCH] WIP --- .../EditSpanAnnotationsDialogQuery.graphql.ts | 164 ++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 app/src/pages/example/__generated__/EditSpanAnnotationsDialogQuery.graphql.ts diff --git a/app/src/pages/example/__generated__/EditSpanAnnotationsDialogQuery.graphql.ts b/app/src/pages/example/__generated__/EditSpanAnnotationsDialogQuery.graphql.ts new file mode 100644 index 00000000000..5c3f66a36bb --- /dev/null +++ b/app/src/pages/example/__generated__/EditSpanAnnotationsDialogQuery.graphql.ts @@ -0,0 +1,164 @@ +/** + * @generated SignedSource<<30ec879b3530437222fdb252dc18abfb>> + * @lightSyntaxTransform + * @nogrep + */ + +/* tslint:disable */ +/* eslint-disable */ +// @ts-nocheck + +import { ConcreteRequest, Query } from 'relay-runtime'; +export type EditSpanAnnotationsDialogQuery$variables = { + spanId: string; +}; +export type EditSpanAnnotationsDialogQuery$data = { + readonly span: { + readonly id: string; + readonly spanAnnotations?: ReadonlyArray<{ + readonly explanation: string | null; + readonly label: string | null; + readonly name: string; + readonly score: number | null; + }>; + }; +}; +export type EditSpanAnnotationsDialogQuery = { + response: EditSpanAnnotationsDialogQuery$data; + variables: EditSpanAnnotationsDialogQuery$variables; +}; + +const node: ConcreteRequest = (function(){ +var v0 = [ + { + "defaultValue": null, + "kind": "LocalArgument", + "name": "spanId" + } +], +v1 = [ + { + "kind": "Variable", + "name": "id", + "variableName": "spanId" + } +], +v2 = { + "alias": null, + "args": null, + "kind": "ScalarField", + "name": "id", + "storageKey": null +}, +v3 = { + "kind": "InlineFragment", + "selections": [ + { + "alias": null, + "args": null, + "concreteType": "SpanAnnotation", + "kind": "LinkedField", + "name": "spanAnnotations", + "plural": true, + "selections": [ + { + "alias": null, + "args": null, + "kind": "ScalarField", + "name": "name", + "storageKey": null + }, + { + "alias": null, + "args": null, + "kind": "ScalarField", + "name": "score", + "storageKey": null + }, + { + "alias": null, + "args": null, + "kind": "ScalarField", + "name": "label", + "storageKey": null + }, + { + "alias": null, + "args": null, + "kind": "ScalarField", + "name": "explanation", + "storageKey": null + } + ], + "storageKey": null + } + ], + "type": "Span", + "abstractKey": null +}; +return { + "fragment": { + "argumentDefinitions": (v0/*: any*/), + "kind": "Fragment", + "metadata": null, + "name": "EditSpanAnnotationsDialogQuery", + "selections": [ + { + "alias": "span", + "args": (v1/*: any*/), + "concreteType": null, + "kind": "LinkedField", + "name": "node", + "plural": false, + "selections": [ + (v2/*: any*/), + (v3/*: any*/) + ], + "storageKey": null + } + ], + "type": "Query", + "abstractKey": null + }, + "kind": "Request", + "operation": { + "argumentDefinitions": (v0/*: any*/), + "kind": "Operation", + "name": "EditSpanAnnotationsDialogQuery", + "selections": [ + { + "alias": "span", + "args": (v1/*: any*/), + "concreteType": null, + "kind": "LinkedField", + "name": "node", + "plural": false, + "selections": [ + { + "alias": null, + "args": null, + "kind": "ScalarField", + "name": "__typename", + "storageKey": null + }, + (v2/*: any*/), + (v3/*: any*/) + ], + "storageKey": null + } + ] + }, + "params": { + "cacheID": "1547a6cddef869cd49a9d300a884d48e", + "id": null, + "metadata": {}, + "name": "EditSpanAnnotationsDialogQuery", + "operationKind": "query", + "text": "query EditSpanAnnotationsDialogQuery(\n $spanId: GlobalID!\n) {\n span: node(id: $spanId) {\n __typename\n id\n ... on Span {\n spanAnnotations {\n name\n score\n label\n explanation\n }\n }\n }\n}\n" + } +}; +})(); + +(node as any).hash = "c9d0c8ec74b9a4f15b24cf0486ff76b4"; + +export default node;