Skip to content

Add (entries: true) argument support#2

Open
tailhook wants to merge 2 commits intoQard:masterfrom
tailhook:entries
Open

Add (entries: true) argument support#2
tailhook wants to merge 2 commits intoQard:masterfrom
tailhook:entries

Conversation

@tailhook
Copy link
Copy Markdown

Added a quick experiment allowing to iterate over keys of a javascript object treating it like a dict.

I.e. filter like { field(entries: true) } is treated like the data in the field not an object of {"key1": "value1"} but an array of ``[{"key": "key1", "value": "value1"}]

In other words, this allows working with javascript objects with keys unknown in advance.

(this builds upon better_error branch in #1)

It still panics, but previous error was:
```
thread 'main' panicked at 'Box<Any>', src/lib.rs:190:23
note: Run with `RUST_BACKTRACE=1` for a backtrace.
```
Now it looks like:
```
hread 'main' panicked at 'Bad query: query parse error: Parse error at 1:2
Unexpected `}[Punctuator]`
Expected `Name` or `...`
', src/lib.rs:190:23
note: Run with `RUST_BACKTRACE=1` for a backtrace.
```
This allows to iterate over keys of a javascript object treating it like
a dict.

I.e. filter like ``{ field(entries: true) }`` is treated like the data
in the field not an object of ``{"key1": "value1"}`` but an array of
``[{"key": "key1", "value": "value1"}]``.

In other words, this allows working with javascript objects with keys
unknown in advance.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant