Basic Query Capabilities Accumulative Datatypes

Assuming you have an entity with single attribute of an arbitrary datatype like STRING or INT.
We can write some queries like
SELECT * FROM entity WHERE ‘SUBSTRING’ in STRING;
SELECT * FROM entity WHERE INT >= x;
However, when you set these datetypes to LIST and LIST it isn’t possible to do this anymore in a easy and intuitive way. Do you see this functionality coming to a future TigerGraph version in the short term?
Neo4j offers this for simpler operations too: https://neo4j.com/labs/neosemantics/4.2/import/#handling-multivalued-properties
Thanks you in advance.

I do this style of GSQL query all the time - does this help?

CREATE DISTRIBUTED QUERY zTester(SET<STRING> dCodes) FOR GRAPH xxx  { 
	
	C1 = {Code.*};
	C1 = SELECT c from C1:d WHERE c.codeValue in dCodes;
3 Likes