File size: 2,094 Bytes
1867b21 |
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 |
/**
* @generated SignedSource<<90910bae5bb646118174e736434aac56>>
* @lightSyntaxTransform
* @nogrep
*/
/* tslint:disable */
/* eslint-disable */
// @ts-nocheck
import { ConcreteRequest, Mutation } from 'relay-runtime';
export type StartSessionInput = {
path: string;
};
export type SAM2ModelStartSessionMutation$variables = {
input: StartSessionInput;
};
export type SAM2ModelStartSessionMutation$data = {
readonly startSession: {
readonly sessionId: string;
};
};
export type SAM2ModelStartSessionMutation = {
response: SAM2ModelStartSessionMutation$data;
variables: SAM2ModelStartSessionMutation$variables;
};
const node: ConcreteRequest = (function(){
var v0 = [
{
"defaultValue": null,
"kind": "LocalArgument",
"name": "input"
}
],
v1 = [
{
"alias": null,
"args": [
{
"kind": "Variable",
"name": "input",
"variableName": "input"
}
],
"concreteType": "StartSession",
"kind": "LinkedField",
"name": "startSession",
"plural": false,
"selections": [
{
"alias": null,
"args": null,
"kind": "ScalarField",
"name": "sessionId",
"storageKey": null
}
],
"storageKey": null
}
];
return {
"fragment": {
"argumentDefinitions": (v0/*: any*/),
"kind": "Fragment",
"metadata": null,
"name": "SAM2ModelStartSessionMutation",
"selections": (v1/*: any*/),
"type": "Mutation",
"abstractKey": null
},
"kind": "Request",
"operation": {
"argumentDefinitions": (v0/*: any*/),
"kind": "Operation",
"name": "SAM2ModelStartSessionMutation",
"selections": (v1/*: any*/)
},
"params": {
"cacheID": "2403f5005f5bb3805109874569f2050e",
"id": null,
"metadata": {},
"name": "SAM2ModelStartSessionMutation",
"operationKind": "mutation",
"text": "mutation SAM2ModelStartSessionMutation(\n $input: StartSessionInput!\n) {\n startSession(input: $input) {\n sessionId\n }\n}\n"
}
};
})();
(node as any).hash = "5cf0005c7a54fc87c539dd4cbd5fef5d";
export default node;
|