Skip to content
New issue

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

pipe (|) expression parse panics when after more that one level of object created #7

Closed
marktayl opened this issue Dec 17, 2019 · 1 comment
Labels
bug Something isn't working

Comments

@marktayl
Copy link

Works fine with pipe after a single-level deep object:

# echo '{"foo":123}' | jq '{"xxx": . } | select(true)'
{
  "xxx": {
    "foo": 123
  }
}

# echo '{"foo":123}' | gojq '{"xxx": . } | select(true)'
{
  "xxx": {
    "foo": 123
  }
}

Parse of jq expression fails with more levels:

# echo '{"foo":123}' | jq '{ "qq": {"xxx": . } | select(true) }'
{
  "qq": {
    "xxx": {
      "foo": 123
    }
  }
}

# echo '{"foo":123}' | gojq '{ "qq": {"xxx": . } | select(true) }'
gojq: invalid query: { "qq": {"xxx": . } | select(true) }
    { "qq": {"xxx": . } | select(true) }
                        ^  unexpected "|" (expected "}")
@itchyny
Copy link
Owner

itchyny commented Dec 18, 2019

This is fixed for now.

@itchyny itchyny added the bug Something isn't working label Dec 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants