Gabor Szarnyas
Gabor Szarnyas
My goal is to produce HTML and PDF outputs from the same Markdown file, with the PDF containing references that can be printed (e.g. "See figure 1") . I found...
@bpj, thanks for the quick reply. > (including the fact that at least in my PDF reader the link jumps to the caption rather than to the top of the...
@srhb: I managed to get it working, although it's a bit cumbersome. I created a Hungarian thesis template which is available here: - https://github.com/FTSRG/thesis-template-markdown - `chapter2.md` includes the figure -...
@aonamrata - it's possible to work around this using a [`CASE` statement](https://neo4j.com/docs/cypher-manual/current/syntax/expressions/#syntax-simple-case) that checks whether the given property exists and whether its an empty list. There are multiple workarounds depending...
Okay, I see. Question: are `p` and `pNew` supposed to be the same variable? I think `+ [null]` could do the trick in your case, just make sure that the...
I stumbled upon this problem recently and just found this issue. I ran a couple of experiments to better understand the semantics of `OPTIONAL MATCH`. I used the following toy...
@Mats-SX I was referring to the `OPTIONAL MATCH` + `WHERE` constellation (which is the focus of this CIR). This code search reveals that there are a few tests for multiple...
I think our "issue" was that `OPTIONAL MATCH` + `WHERE` is unintuitive at first sight to many users, _and_ the TCK does not cover some important sub-cases (such as `OPTIONAL...
Thanks, @JanekPo for investigating this with your implementation. Neo4j returns the correct results indeed, but it is worth trying to make the interaction of `OPTIONAL MATCH` and `WHERE` more intuitive...
Note: related issues were discussed earlier in #56. Essentially, handling whitespaces is very easy in CF grammar-based parsers such as plain ANTLR and Xtext (which uses ANTLR 3 internally). However,...