We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could you please add the following implementation ?
■ OPENJSON
CROSS APPLY
-- cloudflow : parameters = 1 : N SELECT w.name, trigger_param.* FROM workflow AS w CROSS APPLY OPENJSON(JSON_QUERY(w.clientdata, 'properties.definition.triggers.manual.inputs.schema.properties')) AS trigger_params WHERE w.category = 5;
JSON_QUERY(w.clientdata, 'properties.definition.triggers.manual.inputs.schema.properties') is like:
JSON_QUERY(w.clientdata, 'properties.definition.triggers.manual.inputs.schema.properties')
{ "text": { "title": "param1", "type": "string", "x-ms-dynamically-added": true, "description": "desc1", "x-ms-content-hint": "TEXT" }, "text_2": { "title": "param2", "type": "string", "x-ms-dynamically-added": true, "description": "desc2", "x-ms-content-hint": "TEXT" }, "number": { "title": "param3", "type": "number", "x-ms-dynamically-added": true, "description": "desc3", "x-ms-content-hint": "NUMBER" } }
■ JSON_QUERY
JSON_VALUE()
Thanks in advance for your support.
P.S. I'm always indebted to this plugin of yours.
The text was updated successfully, but these errors were encountered:
Added OPENJSON support using default schema
00d3d72
#340
This is covered by #383 and will be in the next release.
Sorry, something went wrong.
No branches or pull requests
Could you please add the following implementation ?
■ OPENJSON
CROSS APPLY
to the return value. like :Click me
JSON_QUERY(w.clientdata, 'properties.definition.triggers.manual.inputs.schema.properties')
is like:■ JSON_QUERY
JSON_VALUE()
. I want a function that accepts arrays and objects as return valuesThanks in advance for your support.
P.S.
I'm always indebted to this plugin of yours.
The text was updated successfully, but these errors were encountered: