See attached QueryV1YamlVsJsonResults.png.
When I run a query with JSON I get back many results when there should only be one:
{"from":"Story","where":[{"number":"B-04904"}]}
When I run with the below equivalent Yaml I get back the one record I expect:
from: Story
where:
Number: B-04904
Combined with the fact that most of the query.v1 examples are in Yaml I'm assuming that's the safer bet?
Also the docs should perhaps mention what content type we should be using with a yaml request. I'm using text/yaml and it seems to work but...