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
each
each(path: JSONPath, var: NAME) Execute all the fixes in the context of every element in the JSONPath hash do each(path: demo, var: t) copy_field(t.value, titles.$append) end
each(path: JSONPath, var: NAME) Execute all the fixes in the context of every element in the JSONPath hash
do each(path: demo, var: t) copy_field(t.value, titles.$append) end
In OERSI I had the scenario: that I had to do this:
uniq("creator[]") uniq("contributor[]") uniq("sourceOrganization[]") uniq("inLanguage[]") uniq("learningResourceType[]") uniq("keywords[]") uniq("about[]") uniq("teaches[]") uniq("assesses[]") uniq("competencyRequired[]") uniq("educationalLevel[]") uniq("encoding[]") uniq("publisher[]") uniq("isPartOf[]")
With do each I could do:
do each(path: ".", "var":"$i") if is_array(".") uniq(".") end end
The text was updated successfully, but these errors were encountered:
Use case also depends on #191.
Sorry, something went wrong.
No branches or pull requests
In OERSI I had the scenario: that I had to do this:
With do each I could do:
The text was updated successfully, but these errors were encountered: