I am developing a new node using Python.
To select a column, I want to display only columns containing a Binary Object.
I am using a function (described below) that works for types such as String and Int.
How can I check that it is a Binary Object ? I tried to use the type “blob” but it’s not work. I also tried the type “logical()” but I need to specify a value type, and none works (tried to use BinaryObjectDataCell, and others).
We realized that currently it is not possible (but planned) to filter for blob columns or use them in pure-Python nodes.
Not very nice, but possible could be to convert it to byte vectors or just strings and test them in the Python node whether they are base64 encodable (see Stackoverflow).