कुकबुक (व्यावहारिक उदाहरण संग्रह)
अंतिम अपडेट: 18 जुलाई 2026
विभिन्न परिदृश्यों को पूर्ण ScriptDefinition के रूप में दिखाया गया है। सिंटैक्स के आधार के लिए Statement कैटलॉग और मान एक्सप्रेशन देखें, तथा एग्ज़िक्यूशन और सीमाओं के लिए एग्ज़िक्यूशन सिमैंटिक्स, सीमाएं, सुरक्षा देखें। सभी उदाहरणों में लिखते समय fields का मान एक Locale मैप ({ "<locale>": मान }) होता है, और उदाहरण Locale को en-US पर एकरूप रखा गया है। बाहरी कॉल (Http) या Media फ़ाइल इंजेस्ट वाले उदाहरणों में executionMode "Async" होता है।
विषय-सूची
- बुनियादी CRUD: 1. Content बनाना और publish करना · 2. गणना किए गए मान से update · 3. केवल-पठन GET · 4. एकल पठन के बाद guard, फिर स्वीकृति
- लुकअप और upsert: 5. slug upsert · 6. डायनामिक फ़ील्ड कुंजी और Locale patch
- बाहरी API: 7. क्रेडिट अग्रिम कटौती (CAS) और LLM कॉल · रिफंड · 8. इमेज URL को Media बनाना · 9. base64 इमेज को Media बनाना · 10. मॉडरेशन के बाद सशर्त प्रोसेसिंग · 11. try/catch fallback
- समानांतर: 12. समानांतर कॉल के बाद मर्ज · 13. साइन-अप समीक्षा
- लूप और एग्रीगेशन: 14. ऐरे इनपुट से N बनाना · 15. counted loop सीड · 16. cascade डिलीट · 17. लूप संचय योग · 18. पूरे पेजिनेशन का ट्रैवर्सल · 19. id बैच संग्रह
- सागा और कॉनकरेंसी: 20. भुगतान सागा · 21. आशावादी लॉक CAS
बुनियादी CRUD
1. Content बनाना और publish करना
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_post" } },
"fields": { "title": { "en-US": "{ /payload/fields/title }" }, "body": { "en-US": "{ /payload/fields/body }" } },
"publish": true, "name": "post" },
{ "type": "Return", "value": { "id": "{ /post/sys/id }" }, "statusCode": 201 } ] }2. गणना किए गए मान से update (व्यू काउंट +1)
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /payload/sys/id }" } },
"fields": { "viewCount": { "en-US": { "+": [ "{ /payload/fields/viewCount }", 1 ] } } } } ] }3. केवल-पठन GET: मेरी ऑर्डर सूची
{ "method": "Get", "executionMode": "Sync",
"statements": [
{ "type": "ResourcePageRead", "resource": "Content", "contentType": { "sys": { "id": "ct_order" } },
"where": { "createdBy": ":self" }, "order": "-sys.createdAt", "limit": 20, "name": "orders" },
{ "type": "Return", "value": { "orders": "{ /orders/items }", "next": "{ /orders/next }" } } ] }Script का उपयोग केवल लिखने के लिए ही नहीं, बल्कि पठन BFF एंडपॉइंट के रूप में भी होता है। createdBy: ":self" से "केवल अपने ही" आइटम क्वेरी किए जाते हैं और परिणाम ज्यों का त्यों लौटा दिया जाता है।
4. एकल पठन के बाद guard, फिर स्वीकृति
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "ResourceRead", "resource": "Content", "target": { "sys": { "id": "{ /payload/fields/orderId }" } }, "name": "order" },
{ "type": "If", "condition": { "!=": [ "{ /order/fields/status/en-US }", "pending" ] },
"then": [ { "type": "Return", "value": { "reason": "not pending" }, "isError": true, "statusCode": 409 } ] },
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /order/sys/id }" } },
"fields": { "status": { "en-US": "approved" } }, "publish": true },
{ "type": "Return", "value": { "ok": true } } ] }ResourceRead से किसी एकल रिकॉर्ड को नाम पर बाइंड करने पर उसे { /order/fields/... } से सीधे संदर्भित किया जा सकता है (items/0 की आवश्यकता नहीं)। यदि वह मौजूद न हो, तो पठन पर एरर आता है (Try से लपेटा जा सकता है)।
लुकअप और upsert
5. slug upsert (find-then-upsert)
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "ResourceFind", "resource": "Content", "contentType": { "sys": { "id": "ct_article" } },
"where": { "fields.slug": { "eq": "{ /payload/fields/slug }" } }, "name": "found" },
{ "type": "If", "condition": { "!!": "{ /found/sys/id }" },
"then": [
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /found/sys/id }" } },
"fields": { "body": { "en-US": "{ /payload/fields/body }" } } },
{ "type": "Return", "value": { "id": "{ /found/sys/id }", "op": "updated" } } ],
"else": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_article" } },
"fields": { "slug": { "en-US": "{ /payload/fields/slug }" }, "body": { "en-US": "{ /payload/fields/body }" } }, "name": "created" },
{ "type": "Return", "value": { "id": "{ /created/sys/id }", "op": "created" }, "statusCode": 201 } ] } ] }ResourceFind पहली मैच को सीधे बाइंड करता है (न होने पर null), और { "!!": "{ /found/sys/id }" } से अस्तित्व के आधार पर शाखा बनाता है।
6. डायनामिक फ़ील्ड कुंजी और डायनामिक Locale patch
{ "method": "Patch", "executionMode": "Sync",
"statements": [
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /payload/sys/id }" } },
"fields": { "{ /payload/fields/fieldKey }": { "{ /payload/fields/locale }": "{ /payload/fields/value }" } } } ] }फ़ील्ड कुंजी और Locale बकेट कुंजी दोनों { /ptr } संदर्भ हैं। किसी अनुवाद को किसी विशिष्ट Locale बकेट में डालते समय इसका उपयोग करें।
बाहरी API
7. क्रेडिट guard, अग्रिम कटौती (CAS), LLM कॉल, विफलता पर रिफंड (प्रतिनिधि उदाहरण)
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "ResourceFind", "resource": "Content", "contentType": { "sys": { "id": "ct_wallet" } },
"where": { "createdBy": ":self" }, "name": "wallet" },
{ "type": "If", "condition": { "<": [ "{ /wallet/fields/balance/en-US }", "{ /payload/fields/cost }" ] },
"then": [ { "type": "Return", "value": { "ok": false, "reason": "insufficient credit" }, "isError": true, "statusCode": 402 } ] },
{ "type": "Try",
"body": [
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /wallet/sys/id }" } },
"version": "{ /wallet/sys/version }",
"fields": { "balance": { "en-US": { "-": [ "{ /wallet/fields/balance/en-US }", "{ /payload/fields/cost }" ] } } },
"name": "charged" } ],
"catch": [ { "type": "Return", "value": { "ok": false, "reason": "version conflict, फिर से प्रयास करें" }, "isError": true, "statusCode": 409 } ] },
{ "type": "Try",
"body": [
{ "type": "Http", "method": "POST", "url": "https://api.llm.com/v1/gen",
"headers": [ { "key": "Authorization", "value": "Bearer sk-...", "secret": true } ],
"body": { "prompt": "{ /payload/fields/prompt }" }, "timeoutMs": 15000, "name": "resp" },
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_result" } },
"fields": { "text": { "en-US": "{ /resp/body/choices/0/message/content }" } }, "name": "out" },
{ "type": "Return", "value": { "ok": true, "id": "{ /out/sys/id }", "remaining": "{ /charged/fields/balance/en-US }" } } ],
"catch": [
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /wallet/sys/id }" } },
"fields": { "balance": { "en-US": { "+": [ "{ /charged/fields/balance/en-US }", "{ /payload/fields/cost }" ] } } } },
{ "type": "Return", "value": { "ok": false, "reason": "generation failed, refunded" }, "isError": true, "statusCode": 502 } ] } ] }guard से यह जांचा जाता है कि शेष राशि पर्याप्त है या नहीं, फिर बाहरी कॉल से पहले कटौती की जाती है। कटौती wallet की sys.version पर आशावादी लॉक (CAS) लगाती है। यदि पढ़ी गई शेष राशि और कटौती के बीच किसी अन्य एग्ज़िक्यूशन ने wallet को बदल दिया हो, तो वर्शन मेल न खाने के कारण abort हो जाता है और catch 409 लौटाता है। चूंकि कोई बाहरी कॉल नहीं होती, इसलिए समवर्ती अनुरोधों पर दोहरी कटौती नहीं होती। कटौती के तय हो जाने के बाद ही LLM को कॉल किया जाता है, और यदि वह कॉल विफल हो, तो catch में कटौती की गई राशि (cost) को वापस जोड़कर रिफंड (कॉम्पेंसेशन) किया जाता है और फिर 502 लौटाया जाता है। क्रम यह है: अपरिवर्तनीय बाहरी कॉल से पहले शुल्क तय करना, और केवल विफलता की स्थिति में कॉम्पेंसेशन करना। गुप्त कुंजी को secret:true हेडर में रखा जाता है। कॉम्पेंसेशन की सीमाओं के लिए एग्ज़िक्यूशन सिमैंटिक्स में ट्रांज़ैक्शन का अभाव और कॉम्पेंसेशन देखें।
8. इमेज (URL) को Media बनाकर Content में संलग्न करना
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "Http", "method": "POST", "url": "https://api.img.com/gen",
"headers": [ { "key": "x-api-key", "value": "...", "secret": true } ],
"body": { "prompt": "{ /payload/fields/prompt }" }, "name": "gen" },
{ "type": "ResourceCreate", "resource": "Media",
"fields": { "title": { "en-US": "{ /payload/fields/prompt }" },
"file": { "en-US": { "source": "{ /gen/body/data/0/url }", "encoding": "url" } } }, "name": "img" },
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_artwork" } },
"fields": { "prompt": { "en-US": "{ /payload/fields/prompt }" }, "image": { "en-US": "{ /img/sys/id }" } } } ] }Media को name के साथ बनाया जाता है, और ResourceCreate (Content) { /img/sys/id } को संदर्भ फ़ील्ड में डालता है। Media भी Content जैसा ही fields मॉडल उपयोग करता है। file इंजेस्ट निर्देश { source, encoding } है। फ़ाइल इंजेस्ट होने के कारण यह Async है।
9. base64 इमेज को Media बनाना
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "Http", "method": "POST", "url": "https://api.img.com/gen",
"headers": [ { "key": "x-api-key", "value": "...", "secret": true } ],
"body": { "prompt": "{ /payload/fields/prompt }" }, "name": "gen" },
{ "type": "ResourceCreate", "resource": "Media",
"fields": { "file": { "en-US": { "source": "{ /gen/body/data/0/b64_json }", "encoding": "base64" } } } } ] }10. मॉडरेशन के बाद सशर्त publish या डिलीट
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "Http", "method": "POST", "url": "https://api.mod.com/check",
"headers": [ { "key": "x-api-key", "value": "...", "secret": true } ],
"body": { "text": "{ /payload/fields/body }" }, "name": "mod" },
{ "type": "If", "condition": { "==": [ "{ /mod/body/flagged }", true ] },
"then": [ { "type": "ResourceDelete", "resource": "Content", "target": { "sys": { "id": "{ /payload/sys/id }" } } } ],
"else": [ { "type": "ResourcePublish", "resource": "Content", "target": { "sys": { "id": "{ /payload/sys/id }" } } } ] } ] }11. try/catch: बाहरी विफलता पर fallback
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "Try",
"body": [
{ "type": "Http", "method": "POST", "url": "https://primary.api/gen",
"headers": [ { "key": "x-api-key", "value": "...", "secret": true } ],
"body": { "prompt": "{ /payload/fields/prompt }" }, "timeoutMs": 8000, "name": "resp" },
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_result" } },
"fields": { "text": { "en-US": "{ /resp/body/text }" }, "source": { "en-US": "primary" } } } ],
"catch": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_result" } },
"fields": { "text": { "en-US": "जनरेशन विफल" }, "error": { "en-US": "{ /error/message }" }, "source": { "en-US": "fallback" } } } ] } ] }समानांतर
12. दो समानांतर बाहरी कॉल मर्ज करके Content
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "Parallel", "branches": [
[ { "type": "Http", "method": "GET", "url": "https://api.a.com/x", "name": "a" } ],
[ { "type": "Http", "method": "GET", "url": "https://api.b.com/y", "name": "b" } ] ] },
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_merged" } },
"fields": { "left": { "en-US": "{ /a/body/value }" }, "right": { "en-US": "{ /b/body/value }" } } } ] }13. साइन-अप समीक्षा: समानांतर स्कोर के बाद and निर्णय
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "Parallel", "branches": [
[ { "type": "Http", "method": "POST", "url": "https://api.fraud.com/score",
"headers": [ { "key": "x-api-key", "value": "...", "secret": true } ],
"body": { "email": "{ /payload/fields/email }" }, "name": "fraud" } ],
[ { "type": "Http", "method": "GET", "url": "https://api.credit.com/v1/{ /payload/fields/userId }/score",
"headers": [ { "key": "x-api-key", "value": "...", "secret": true } ], "name": "credit" } ] ] },
{ "type": "If",
"condition": { "and": [ { "<": [ "{ /fraud/body/risk }", 0.5 ] }, { ">=": [ "{ /credit/body/score }", 700 ] } ] },
"then": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_account" } },
"fields": { "email": { "en-US": "{ /payload/fields/email }" }, "status": { "en-US": "approved" } } },
{ "type": "Return", "value": { "decision": "approved" }, "statusCode": 201 } ],
"else": [ { "type": "Return", "value": { "decision": "manual-review" }, "statusCode": 202 } ] } ] }{ /ptr } को URL पथ में भी डाला जा सकता है। ब्रांच के परिणाम जॉइन के बाद संदर्भित किए जाते हैं। बाहरी कॉल 2 हैं (3 या उससे कम)।
लूप और एग्रीगेशन
14. ऐरे इनपुट से N Content (Loop over)
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "Loop", "over": "{ /payload/fields/items }", "as": "item", "maxIterations": 100,
"body": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_item" } },
"fields": { "name": { "en-US": "{ /item/name }" }, "qty": { "en-US": "{ /item/qty }" } } } ] } ] }15. counted loop (for): स्लॉट सीड
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "Loop", "for": { "from": 1, "to": 5 }, "as": "i", "maxIterations": 100,
"body": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_slot" } },
"fields": { "index": { "en-US": "{ /i }" }, "status": { "en-US": "open" } } } ] } ] }for from से to तक समावेशी होता है (पूर्णांक लिटरल, step डिफ़ॉल्ट 1)। as वर्तमान काउंटर को { /i } पर बाइंड करता है।
16. cascade डिलीट (PageRead, Loop, Delete)
{ "method": "Delete", "executionMode": "Sync",
"statements": [
{ "type": "ResourcePageRead", "resource": "Content", "contentType": { "sys": { "id": "ct_comment" } },
"where": { "fields.postId": { "eq": "{ /payload/sys/id }" } }, "limit": 100, "name": "comments" },
{ "type": "Loop", "over": "{ /comments/items }", "as": "c", "maxIterations": 100,
"body": [ { "type": "ResourceDelete", "resource": "Content", "target": { "sys": { "id": "{ /c/sys/id }" } } } ] },
{ "type": "ResourceDelete", "resource": "Content", "target": { "sys": { "id": "{ /payload/sys/id }" } } } ] }100 से अधिक होने पर 18. पूरे पेजिनेशन का ट्रैवर्सल से इसे संभालें।
17. लूप संचय: SetVar योग
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "SetVar", "var": "total", "value": 0 },
{ "type": "Loop", "over": "{ /payload/fields/items }", "as": "row", "maxIterations": 100,
"body": [ { "type": "SetVar", "var": "total", "value": { "+": [ "{ /vars/total }", "{ /row/qty }" ] } } ] },
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_summary" } },
"fields": { "totalQty": { "en-US": "{ /vars/total }" } } } ] }18. पूरे पेजिनेशन का ट्रैवर्सल
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "SetVar", "var": "cursor", "value": null },
{ "type": "SetVar", "var": "hasMore", "value": true },
{ "type": "Loop", "while": "{ /vars/hasMore }", "maxIterations": 1000,
"body": [
{ "type": "ResourcePageRead", "resource": "Content", "contentType": { "sys": { "id": "ct_post" } },
"where": { "fields.status": { "eq": "draft" } }, "limit": 100, "cursor": "{ /vars/cursor }", "name": "page" },
{ "type": "Loop", "over": "{ /page/items }", "as": "p", "maxIterations": 100,
"body": [ { "type": "ResourcePublish", "resource": "Content", "target": { "sys": { "id": "{ /p/sys/id }" } } } ] },
{ "type": "SetVar", "var": "cursor", "value": "{ /page/next }" },
{ "type": "SetVar", "var": "hasMore", "value": { "!!": "{ /page/next }" } } ] } ] }cursor, while और SetVar से सभी पेजों को ट्रैवर्स किया जाता है। Loop body के अंदर बाहरी कॉल वर्जित हैं, इसलिए यहां केवल रिसोर्स ऑपरेशन ही उपयोग किए जाते हैं।
19. ईमेल सूची से id बैच संग्रह (merge)
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "SetVar", "var": "ids", "value": [] },
{ "type": "SetVar", "var": "missing", "value": [] },
{ "type": "Loop", "over": "{ /payload/fields/emails }", "as": "email", "maxIterations": 100,
"body": [
{ "type": "ResourceFind", "resource": "Content", "contentType": { "sys": { "id": "ct_account" } },
"where": { "fields.email": { "eq": "{ /email }" } }, "name": "acc" },
{ "type": "If", "condition": { "!!": "{ /acc/sys/id }" },
"then": [ { "type": "SetVar", "var": "ids", "value": { "merge": [ "{ /vars/ids }", [ "{ /acc/sys/id }" ] ] } } ],
"else": [ { "type": "SetVar", "var": "missing", "value": { "merge": [ "{ /vars/missing }", [ "{ /email }" ] ] } } ] } ] },
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_campaign" } },
"fields": { "recipients": { "en-US": "{ /vars/ids }" }, "unresolved": { "en-US": "{ /vars/missing }" } } } ] }पठन (ResourceFind) कोई बाहरी कॉल नहीं है, इसलिए यह Loop body में अनुमत है। अस्तित्व और अनुपस्थिति को अलग-अलग merge से संचित किया जाता है।
सागा और कॉनकरेंसी
20. भुगतान सागा (Try/catch/finally)
{ "method": "Post", "executionMode": "Async",
"statements": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_order" } },
"fields": { "sku": { "en-US": "{ /payload/fields/sku }" }, "status": { "en-US": "reserved" } },
"publish": false, "name": "order" },
{ "type": "Try",
"body": [
{ "type": "Http", "method": "POST", "url": "https://api.pay.com/charge",
"headers": [ { "key": "Authorization", "value": "Bearer sk-...", "secret": true } ],
"body": { "amount": "{ /payload/fields/amount }", "ref": "{ /order/sys/id }" }, "timeoutMs": 10000, "name": "pay" },
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /order/sys/id }" } },
"fields": { "status": { "en-US": "paid" }, "txId": { "en-US": "{ /pay/body/transactionId }" } }, "publish": true },
{ "type": "Return", "value": { "orderId": "{ /order/sys/id }", "status": "paid" }, "statusCode": 201 } ],
"catch": [
{ "type": "ResourceDelete", "resource": "Content", "target": { "sys": { "id": "{ /order/sys/id }" } } },
{ "type": "Return", "value": { "reason": "payment failed", "detail": "{ /error/message }" }, "isError": true, "statusCode": 402 } ],
"finally": [
{ "type": "ResourceCreate", "resource": "Content", "contentType": { "sys": { "id": "ct_paylog" } },
"fields": { "orderRef": { "en-US": "{ /order/sys/id }" }, "amount": { "en-US": "{ /payload/fields/amount }" } } } ] } ] }आरक्षण (draft) के बाद, भुगतान सफल होने पर पुष्टि, publish और 201; विफलता पर catch आरक्षण को डिलीट (कॉम्पेंसेशन) करता है और 402; finally हमेशा लॉग करता है। डिलीट-आधारित कॉम्पेंसेशन एक नई sys.id बनाता है, इसलिए यह उस सीमा में आता है जहां संदर्भ टूट जाते हैं (एग्ज़िक्यूशन सिमैंटिक्स में ट्रांज़ैक्शन का अभाव और कॉम्पेंसेशन देखें)।
21. आशावादी लॉक CAS
{ "method": "Post", "executionMode": "Sync",
"statements": [
{ "type": "ResourcePageRead", "resource": "Content", "contentType": { "sys": { "id": "ct_stock" } },
"where": { "fields.sku": { "eq": "{ /payload/fields/sku }" } }, "limit": 1, "name": "stock" },
{ "type": "If", "condition": { "<": [ "{ /stock/items/0/fields/qty/en-US }", "{ /payload/fields/amount }" ] },
"then": [ { "type": "Return", "value": { "reason": "out of stock" }, "isError": true, "statusCode": 409 } ] },
{ "type": "Try",
"body": [
{ "type": "ResourcePatch", "resource": "Content", "target": { "sys": { "id": "{ /stock/items/0/sys/id }" } },
"version": "{ /stock/items/0/sys/version }",
"fields": { "qty": { "en-US": { "-": [ "{ /stock/items/0/fields/qty/en-US }", "{ /payload/fields/amount }" ] } } } },
{ "type": "Return", "value": { "ok": true } } ],
"catch": [
{ "type": "Return", "value": { "reason": "version conflict, फिर से प्रयास करें" }, "isError": true, "statusCode": 409 } ] } ] }स्टॉक को पढ़कर एक ताज़ा sys.version प्राप्त करने के बाद उसी वर्शन से कटौती की जाती है (version)। यदि पठन और लेखन के बीच किसी अन्य एग्ज़िक्यूशन ने मान बदल दिया हो, तो वर्शन मेल न खाने के कारण abort हो जाता है और catch 409 लौटाता है। स्टॉक अपर्याप्त होने वाला guard Try के बाहर है (सामान्य पूर्व-समाप्ति)।
संबंधित दस्तावेज़
- Statement कैटलॉग: उदाहरणों में उपयोग किए गए स्टेटमेंट्स के फ़ील्ड और परिणाम।
- मान एक्सप्रेशन: संदर्भ, JsonLogic, Locale मैप नियम।
- एग्ज़िक्यूशन सिमैंटिक्स, सीमाएं, सुरक्षा: एग्ज़िक्यूशन क्रम, कॉम्पेंसेशन, आशावादी लॉक, सीमाएं।
- Script अवलोकन: शीर्ष-स्तरीय संरचना और एग्ज़िक्यूशन मोड।
