Hi,
I am using the StorageService to store some data. I am now building a "Custom code" server-side Java tool to modify this data. I'd like to build a query that returns all entries that are older than 48h. How can I access the "Created On"-column using a query (i.e. what is the column-key)?
I'm basically missing "CREATED_ON_KEY":
Query q1 = QueryBuilder.build(GAME_STATE_KEY, 1, Operator.EQUALS);
Query q2 = QueryBuilder.build(CREATED_ON_KEY, now - 48h, Operator.LESS_THAN);
Query query = QueryBuilder.compoundOperator(q1, Operator.AND, q2);
Thanks!
Nick