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
json data: { "strs": [ { "s1": "a", "s2": "b" }, { "s1": "a", "s2": "c" }, { "s1": "c", "s2": "b" } ] } 1.contains mathc an object json data Can match {"s1":"a","s2":"b"}
3.memberOf strs of json data is memberOf [{"s1":"a","s2":"b"},{"s1":"a","s2":"c"},{"s1":"c","s2":"b"},{"s1":"c","s2":"d"}] 4.memberOf
strs of json data equal [{"s1":"a","s2":"b"},{"s1":"a","s2":"c"},{"s1":"c","s2":"b"},{"s1":"c","s2":"d"}]
The text was updated successfully, but these errors were encountered:
Issue #2 implementation changed to allow subsets on "attribute" name.
Next move, write some tests to check if this new impl already accept these cases.
Sorry, something went wrong.
thiagolvlsantos
No branches or pull requests
json data:
{
"strs": [
{
"s1": "a",
"s2": "b"
},
{
"s1": "a",
"s2": "c"
},
{
"s1": "c",
"s2": "b"
}
]
}
1.contains mathc an object
json data Can match {"s1":"a","s2":"b"}
json data Can match [{"s1":"a","s2":"b"},{"s1":"a","s2":"c"}]
3.memberOf
strs of json data is memberOf [{"s1":"a","s2":"b"},{"s1":"a","s2":"c"},{"s1":"c","s2":"b"},{"s1":"c","s2":"d"}]
4.memberOf
strs of json data equal [{"s1":"a","s2":"b"},{"s1":"a","s2":"c"},{"s1":"c","s2":"b"},{"s1":"c","s2":"d"}]
The text was updated successfully, but these errors were encountered: