Andreas Eberhart

Results 50 comments of Andreas Eberhart

Sidenav is done. All others are quite tricky: * font / scss cannot easily be set at runtime * cookieconsent is loaded / configured in app module - maybe use...

"query" returns tabular result data. If a column projects a (primary or foreign) key, there is a requirement that all keys come from the same table. So if the result...

Final question is what the "Path" return type should look like. A path can be though of as a sequence of traverse operations. A traverse operation allows you to hop...

Remaining TODOs: * support for property ranges * documentation on query syntax, expected return types (in javadoc), and the handling of graph queries in the catalog

react admin behaves as follows w.r.t. special characters in resource names: * / is not escaped - this conflicts with the DJ parsing logic though * "hash" is escaped to...

RA useCreatePath: return removeDoubleSlashes( `${basename}/${resource}/${encodeURIComponent(id)}/show` );

test code ``` const AdminApp = () => ( ); export const LIST = () => { return {useResourceContext()} } export const EDIT = () => { return {useResourceContext() +...

TODO still: special handling for tables that have # in their resource name * table FK references * links widget * handling of djLabel in those cases

The Java equivalent of this would be binding a class in com.dashjoin.jsonata.Jsonata.Frame.bind(String, JFunction) and then calling a method using reflection. At the moment this is not possible and you have...