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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
example data:
{ "stores":{ "s1":{ "id":"s1", "openTime": 1234567890 }, "s2":{ "id":"s2", "openTime": 1234567891 }, "s3":{ "id":"s3", "openTime": 1234567892 }, "s4":{ "id":"s4", "openTime": 1234567893 } } }
I can get 'id's with
stores.*.id
I can get first id with
stores.*.id | [0]
Is there any build in function that let me random select an id from 'id's ? something like jinja2 random filter:
stores.*.id | random
The text was updated successfully, but these errors were encountered:
I think you can do something like this: 'stories.*id | [' + str(random.randint(0,3)) +']'
'stories.*id | [' + str(random.randint(0,3)) +']'
Sorry, something went wrong.
No branches or pull requests
example data:
I can get 'id's with
I can get first id with
Is there any build in function that let me random select an id from 'id's ? something like jinja2 random filter:
The text was updated successfully, but these errors were encountered: