We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The stored scripts API today accepts malformed requests instead of throwing an exception. For instance:
POST _scripts/foo { "source": "return" } GET _scripts/foo
returns
{ "_id": "foo", "found": true, "script": { "lang": "mustache", "source": """{"source":"return"}""" } }