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
Hello! First of all, thanks for this project.
Could you please add conditions operators AND, OR for using multiple conditions in one query?
For example:
let json_string = r#" { "customFields": [ { "projectCustomField": { "id": "1", "$type": "EnumProjectCustomField" }, "value": { "localizedName": null, "description": null, "name": "High", "id": "3", "$type": "EnumBundleElement" }, "name": "Priority", "id": "1", "$type": "SingleEnumIssueCustomField" }, { "projectCustomField": { "id": "2", "$type": "EnumProjectCustomField" }, "value": { "localizedName": null, "description": null, "name": "Bug", "id": "3", "$type": "EnumBundleElement" }, "name": "Type", "id": "2", "$type": "SingleEnumIssueCustomField" }, ] }"#; let prioroty= ajson::get(json_string, r#"customFields.#($type == "SingleEnumIssueCustomField" && name == "Priority").value.name"#).map(|s| s.to_string());
The text was updated successfully, but these errors were encountered:
Sorry for late. It looks like a good feature, but I have no time to implement it at this time cause of my work.
Sorry, something went wrong.
And I will do it as soon as I finished my work in hand.
importcjj
No branches or pull requests
Hello!
First of all, thanks for this project.
Could you please add conditions operators AND, OR for using multiple conditions in one query?
For example:
The text was updated successfully, but these errors were encountered: